using System.Collections.Generic;
using System.Data.Entity;
using Z.EntityFramework.Plus;
public static void Main()
List<Customer> customers1 = new List<Customer>();
List<Customer> customers2 = new List<Customer>();
using (var context = new EntityContext())
context.Customers.FromCache().ToList();
context.Customers.OrderBy(x => x.CustomerID).Take(2).Delete();
using (var context = new EntityContext())
customers2 = context.Customers.FromCache().ToList();
FiddleHelper.WriteTable("1 - In DataBase",context.Customers.ToList());
FiddleHelper.WriteTable("2 - In Cache",customers2);
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name ="Customer_A", IsActive = false });
context.Customers.Add(new Customer() { Name ="Customer_B", IsActive = true });
context.Customers.Add(new Customer() { Name ="Customer_C", IsActive = false });
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 Boolean IsActive { get; set; }