using System.Data.Entity;
using System.Collections.Generic;
public static void Main()
var customers = GenerateCustomers(count);
using (var context = new EntityContext())
FiddleHelper.WriteTable("1 - Customers Before", context.Customers.AsNoTracking());
var customerDTO = context.Customers
.Select(c => new CustomerDTO
CustomerID = c.CustomerID,
context.Customers.DeleteByKey(customerDTO);
FiddleHelper.WriteTable("1 - Customers After", context.Customers.AsNoTracking());
public static List<Customer> GenerateCustomers(int count)
List<Customer> list = new List<Customer>();
for(int i = 0; i < count; i++)
list.Add(new Customer() { CustomerID = (i + 1), Name = "Customer_" + i});
public static void SeedCustomers(int count)
var customers = GenerateCustomers(count);
new EntityContext().BulkInsert(customers, options => options.InsertKeepIdentity = true);
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 int CustomerID { get; set; }
public string Name { get; set; }