Ignore field on all classes on dbcontext
class MyDbContext:DbContext{ protected override void OnModelCreating(DbModelBuilder modelBuilder){ modelBuilder.Types().Configure(c=>c.Ignore("IsDirty")); // now IsDirty will not persist } }