使用带有 POCO 的 EntityFramework 4.3。如何检查模型上的属性是否被忽略。
在我的 DBContext 类层次结构中,我忽略了一个属性
modelBuilder.Entity<EClass>().Ignore (f => f.IgnoredProperty());
在我的 BaseContext 类中,我需要检查该属性是否被忽略。
private void ProcessGlobalConvention(DbModelBuilder modelBuilder, IGlobalConvention convention)
{
modelBuilder.Entity<typeof(this.GetType())>("Ignored Property");
}
我怎样才能做到这一点?
谢谢