EF CTP 5 中没有 Key 属性

发布于 2024-10-10 08:55:51 字数 467 浏览 3 评论 0原文

根据此处的博客文章 实体框架中的数据注释 应该有一个名为“Key”的列属性,它允许您标记实体的主键。但是我无法在 .Net 3.5 或 .Net 4.0 中找到它。

我错过了什么?我已包含对 EntityFramework.dll 的引用,并且已检查了 System.ComponentModel.DataAnnotations 下的所有属性,但我无法找到它。 alt text

我已将项目设置为 .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.
alt text

I have set my project to .Net 4.0 full (not client profile).

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把人绕傻吧 2024-10-17 08:55:51

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.

慕烟庭风 2024-10-17 08:55:51

也许您的项目不是针对 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 ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文