using System.Collections.Generic;
using System.Diagnostics;
using System.Data.SqlClient;
public static List<BenchmarkResult> BenchmarkResults = new List<BenchmarkResult>();
public static void Main()
var customerCount = 1000;
var clockBulkDelete = new Stopwatch();
var customers = GenerateCustomers(customerCount);
using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer()))
using (var bulk = new BulkOperation<Customer>(connection))
bulk.DestinationTableName = "Customers";
bulk.BulkDelete(customers);
BenchmarkResults.Add(new BenchmarkResult() { Action = "BulkDelete (Bulk Operations)", Entities = customers.Count(), Performance = clockBulkDelete.ElapsedMilliseconds + " ms" });
FiddleHelper.WriteTable(BenchmarkResults);
public static void JustInTime_Compile()
using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer()))
var list = new List<Customer>();
for(int i = 0; i < 20; i++)
list.Add(new Customer() { Code = "Code_" + i, FirstName = "FirstName_" + i, LastName = "LastName_" + i });
using (var bulk = new BulkOperation<Customer>(connection))
bulk.DestinationTableName = "Customers";
public static List<Customer> GenerateCustomers(int count)
var list = new List<Customer>();
for(int i = 0; i < insertCount; i++)
list.Add(new Customer() { Code = "Code_" + i, FirstName = "FirstName_" + i, LastName = "LastName_" + i });
using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer()))
using (var bulk = new BulkOperation<Customer>(connection))
bulk.DestinationTableName = "Customers";
public static void GenerateDatabase()
using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer()))
using (var command = connection.CreateCommand())
[CustomerID] [INT] IDENTITY(1,1) NOT NULL,
[Code] [NVARCHAR](MAX) NULL,
[FirstName] [NVARCHAR](MAX) NULL,
[LastName] [NVARCHAR](MAX) NULL,
CONSTRAINT [PK_Customers] PRIMARY KEY CLUSTERED
command.ExecuteNonQuery();
public int CustomerID { get; set; }
public string Code { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public class BenchmarkResult
public string Action { get; set; }
public int Entities { get; set; }
public string Performance { get; set; }