using System.Data.Entity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
public static void Main()
using (var context = new EntityContext())
Name = ".NET Framework Blog",
Url = "https://blogs.msdn.microsoft.com/dotnet/"
FiddleHelper.WriteTable(context.Blogs.ToList());
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Blog> Blogs { get; set; }
public int BlogId { get; set; }
public string Name { get; set; }
public string Url { get; set; }