using System.Data.Entity;
using System.Collections.Generic;
using System.Data.Entity.Infrastructure;
public static void Main()
using (var context = new EntityContext())
var customer = new Customer()
context.Customers.Add(customer);
int id = customer.CustomerID;
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public int CustomerID { get; set; }
public string Name { get; set; }