我刚刚更新了的EntityFramework到最新的5.0.0。 而NotMapped
注释现在无法正常工作。 我想谷歌的答案,解决它,但没有找到。 没有人有当你更新的EntityFramework,并知道解决办法来解决这个问题,同样的问题?
Answer 1:
注释在EF 5.0属性与.NET 4.5移到System.ComponentModel.DataAnnotations组件和System.ComponentModel.DataAnnotations.Schema
命名空间。
Answer 2:
[NotMapped]是在System.ComponentModel.DataAnnotations.Schema。 确保添加using System.ComponentModel.DataAnnotations.Schema;
你的代码。
文章来源: Updated to EF5 now NotMapped annotation doesn't work