标签: asp.net-mvc reflection entity-framework-4 entity-framework-4.1 ef-code-first
如果我有一个属性的PropertyInfo或该属性的MVC MetaData,我如何检测它是否具有来自EF CodeFirst的[NotMapped]注释?感谢。
PropertyInfo
[NotMapped]
答案 0 :(得分:7)
你可以这样做:
youPropertyInfo.GetCustomAttributes(typeof(NotMappedAttribute), true).Count() > 1