using System.Data.Entity;
using System.Collections.Generic;
public static void Main()
Z.EntityFramework.Extensions.EntityFrameworkManager.DefaultEntityFrameworkPropagationValue = false;
using (var context = new EntityContext())
List<Customer> list = new List<Customer>();
for(int i = 0; i < 1000; i++)
list.Add(new Customer() { Name ="Customer_" + i});
context.Customers.AddRange(list);
context.BulkSaveChanges();
FiddleHelper.WriteTable(context.Customers.Take(5).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; }