如何在 EF4.1 Code First 中定义不能是身份或 guid 的属性的键?

发布于 2024-11-01 09:21:29 字数 511 浏览 5 评论 0原文

我有一个简单的类:

public class Member
{
    public int AccountId { get; set; }
    public string Name { get; set; }
    public string Role { get; set; }
    public DateTime MemberSince { get; set; }
}

我需要将 AccountId 设置为密钥,但如果我使用“Key”属性,它会将其转换为对我不起作用的身份(此数据来自另一个来源,因此无法更改该值) 。

还有其他方法可以做到这一点吗?

这里几乎完全相同的问题,除了答案使用我无法做到的流畅界面。

I have a simple class:

public class Member
{
    public int AccountId { get; set; }
    public string Name { get; set; }
    public string Role { get; set; }
    public DateTime MemberSince { get; set; }
}

I need to make the AccountId a key but if I use the "Key" attribute it turns it into an identity which won't work for me (this data comes from another source so the value cannot be changed).

Is there another way to do this?

There is almost the exact same question here except the answer uses the fluent interface which I cannot do.

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

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

发布评论

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

评论(1

夜未央樱花落 2024-11-08 09:21:29

当然,您可以使用:

[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
public int AccoungId { get; set; }

Sure, you can use:

[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
public int AccoungId { get; set; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文