using System.Data.Entity;
public static void Main()
using (var context = new EntityContext())
context.Configuration.QueryFilter.Filter<ISoftDelete>(customer => !customer.IsDeleted);
var list = context.Customers.ToList();
FiddleHelper.WriteTable("Customers", list);
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name = "Customer_A", Description = "Description" });
context.Customers.Add(new Customer() { Name = "Customer_B", Description = "Description", IsDeleted = true });
context.Customers.Add(new Customer() { Name = "Customer_C", Description = "Description" });
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public interface ISoftDelete
bool IsDeleted { get; set; }
public class Customer : ISoftDelete
public int CustomerID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool IsDeleted { get; set; }