using System.Data.Entity;
using System.Collections.Generic;
public static void Main()
List<Customer> list1 = new List<Customer>() { new Customer() { Name ="Customer_A" }, new Customer() { Name ="Customer_B" }};
List<Customer> list2 = new List<Customer>() { new Customer() { Name ="Customer_C" }, new Customer() { Name ="Customer_D" }};
using (var context = new EntityContext())
var transaction = context.Database.BeginTransaction();
context.BulkInsert(list1);
context.BulkInsert(list2);
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; }