using System.Data.Entity;
using System.Collections.Generic;
EvalManager.DefaultContext.RegisterExtensionMethod(typeof(DbContextExtensions));
EvalManager.DefaultContext.RegisterType(typeof(Customer));
public static void Main()
using (var context = new EntityContext())
context.BulkInsert(Data(), options => options.BatchSize = 100);
FiddleHelper.WriteTable(context.Customers.Take(3).ToList());
using (var context = new EntityContext())
context.Customers.Where(x => x.CustomerID == userId).Execute("UpdateFromQuery(x => new Customer() { DateTimeDeleted = DateTime.UtcNow})");
FiddleHelper.WriteTable(context.Customers.Take(3).ToList());
public static List<Customer> Data()
List<Customer> list = new List<Customer>();
for(int i = 0; i < 1000; i++)
list.Add(new Customer() { Name ="Customer_" + i, IsActive = isActive });
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public interface IDbDeleted
DateTime? DateTimeDeleted {get;set;}
public class Customer: IDbDeleted
public int CustomerID { get; set; }
public string Name { get; set; }
public bool IsActive { get; set; }
public DateTime? DateTimeDeleted {get;set;}