EF CTP 5 中没有 Key 属性
根据此处的博客文章 实体框架中的数据注释 应该有一个名为“Key”的列属性,它允许您标记实体的主键。但是我无法在 .Net 3.5 或 .Net 4.0 中找到它。
我错过了什么?我已包含对 EntityFramework.dll 的引用,并且已检查了 System.ComponentModel.DataAnnotations 下的所有属性,但我无法找到它。
我已将项目设置为 .Net 4.0 full(不是客户端配置文件)。
有什么想法吗?
According to the blog post here Data Annotations in the Entity Framework there should be an attribute for a column called "Key" which allows you to mark the primary key of an entity. However I cannot locate this in .Net 3.5 or .Net 4.0.
What have I missed? I've included the reference to EntityFramework.dll and I've checked all the attributes under System.ComponentModel.DataAnnotations
but I cannot locate it.
I have set my project to .Net 4.0 full (not client profile).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
KeyAttribute 仅适用于 .NET 4,它位于 < code>System.ComponentModel.DataAnnotations 程序集,因此请确保您已引用它。
The KeyAttribute is .NET 4 only and it is located in the
System.ComponentModel.DataAnnotations
assembly so make sure you have referenced it.也许您的项目不是针对 Framework 4.0,因此,当您添加 System.ComponentModel.DataAnnotations 引用时,它不会对应于 4.0 版本,即具有“Key”定义的版本。
尝试删除当前的 DataAnnotation 引用,然后将项目的目标框架(右键单击项目 -> 属性 -> 应用程序 -> 目标框架)更改为 .Net 4.0,然后再次添加对 DataAnnotations 的引用。为我工作;)
Probably your project is not targeting Framework 4.0, so, when you add the System.ComponentModel.DataAnnotations reference, it will not correspond to the 4.0 version, that is the version that has the "Key" definition.
Try deleting your current DataAnnotation reference, then change the project's target framework (right click the project -> Properties -> Application -> Target Framework) to .Net 4.0, and then add the reference to DataAnnotations again. Worked for me ;)