using System.Data.Entity;
using System.Collections.Generic;
using System.Diagnostics;
public static void Main()
List<Customer> list = Data();
using (var context = new CustomerContext())
context.Customers.AddRange(list);
context.BulkSaveChanges();
FiddleHelper.WriteTable(context.Customers.Take(5));
public static List<Customer> Data()
List<Customer> list = new List<Customer>();
for(int i = 0; i < 2000; i++)
list.Add(new Customer() { Name ="Customer_" + i});
public class CustomerContext : DbContext
public CustomerContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public int CustomerID { get; set; }
public string Name { get; set; }