using System.Collections.Generic;
using System.Diagnostics;
using System.Data.Entity;
using System.Threading.Tasks;
public static void Main()
public static async Task MainAsync()
var customers = GenerateCustomers(5);
using (var context = new EntityContext())
CancellationTokenSource tcs = new CancellationTokenSource();
CancellationToken token = new CancellationToken();
await context.BulkInsertAsync(customers, token);
FiddleHelper.WriteTable("1 - Customers", context.Customers);
public static List<Customer> GenerateCustomers(int count)
List<Customer> list = new List<Customer>();
for(int i = 0; i < count; i++)
list.Add(new Customer() { Name = "Customer_" + i});
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; }