using System.Collections.Generic;
using System.Data.Entity;
public static void Main()
using (var context = new EntityContext())
var list = context.Customers.ToList();
list.First().Description = "Updated_A";
context.BulkUpdate(list);
FiddleHelper.WriteTable(context.Customers.ToList());
var customers = new List<Customer>();
customers.Add(new Customer() { Name = "Customer_B", Description = "Updated_B", IsActive = false});
using (var context = new EntityContext())
context.BulkUpdate(customers, options => options.ColumnPrimaryKeyExpression = customer => customer.Name);
FiddleHelper.WriteTable(context.Customers.ToList());
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name ="Customer_A", Description = "Description", IsActive = true });
context.Customers.Add(new Customer() { Name ="Customer_B", Description = "Description", IsActive = true });
context.BulkSaveChanges();
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; }