using System.Collections.Generic;
using System.Data.Entity;
using Z.EntityFramework.Plus;
public static void Main()
using (var context = new EntityContext())
FiddleHelper.WriteTable("1 - Before Item Added", context.Customers.FromCache().ToList());
context.Customers.Add(new Customer() { Name = "Customer_D", IsActive = true });
FiddleHelper.WriteTable("1 - After Item Added", context.Customers.FromCache().ToList());
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; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
QueryCacheManager.IsAutoExpireCacheEnabled = true;
public int CustomerID { get; set; }
public string Name { get; set; }
public Boolean IsActive { get; set; }