using System.Data.Entity;
public static void Main()
using (var context = new EntityContext())
var list = context.Customers.ToList();
list.Add(new Customer() { CustomerID =555, Name ="Customer_C", Description = "NOT_HERE", IsActive = false});
context.BulkMerge(list, options =>
options.IgnoreOnMergeInsertExpression = customer => new {customer.CustomerID, customer.Description};
using (var context = new EntityContext())
FiddleHelper.WriteTable(context.Customers.ToList());
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; }
public string Description { get; set; }
public Boolean IsActive { get; set; }