如何在 EF4.1 Code First 中定义不能是身份或 guid 的属性的键?
我有一个简单的类:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,您可以使用:
Sure, you can use: