如何从PropertyInfo或MetaData中检测[NotMapped]注释?

时间:2011-09-16 14:47:37

标签: asp.net-mvc reflection entity-framework-4 entity-framework-4.1 ef-code-first

如果我有一个属性的PropertyInfo或该属性的MVC MetaData,我如何检测它是否具有来自EF CodeFirst的[NotMapped]注释?感谢。

1 个答案:

答案 0 :(得分:7)

你可以这样做:

youPropertyInfo.GetCustomAttributes(typeof(NotMappedAttribute), true).Count() > 1