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



如果我有一个属性的PropertyInfo或该属性的MVC元数据,我怎么能检测它是否有EF CodeFirst的[NotMapped]注释?谢谢。

你可以这样做:

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

相关内容

  • 没有找到相关文章

最新更新