现在更新为EF5 NotMapped注释不起作用

时间:2012-08-30 09:55:13

标签: c# entity-framework-5

我刚刚将实体框架更新到最新的5.0.0版本。并且NotMapped注释现在不起作用。我试图谷歌找到答案来解决它,但找不到。当您更新实体框架并知道修复此问题的解决方案时,任何人都遇到了同样的问题吗?

2 个答案:

答案 0 :(得分:27)

EF 5.0 with .NET 4.5中的注释属性已移至System.ComponentModel.DataAnnotations程序集和System.ComponentModel.DataAnnotations.Schema命名空间。

答案 1 :(得分:2)

[ NotMapped ]位于 System.ComponentModel.DataAnnotations.Schema 中。请务必在代码中添加using System.ComponentModel.DataAnnotations.Schema;