1

我正在尝试实现实体框架的代码优先方法。我有四个实体UserInfoClient和。我希望关系为:AdminAccount

  • 每个Client都有一个UserInfo
  • 每个Admin都有一个`UserInfo
  • 每个Account都与一个 User( UserInfo)链接

假设这些东西我写了 POCO 模型。有了我想要的关系,它是否正确?我错过了什么吗?

public class UserInfo
    {
        public int UserInfoID { get; set; }
        public Name Name { get; set; }
        public Address Address { get; set; }
        public Contact Contact { get; set; }
    }

public class Admin
    {
        public int AdminID { get; set; }
        public int UserInfoID { get; set; }
        [ForeignKey("UserInfoID")]
        public virtual UserInfo UserInfo { get; set; }
    }

public class Client
    {
        public int ClientID { get; set; }
        public CompanyDetails CompanyDetails { get; set; }
        public int UserInfoID { get; set; }
        [ForeignKey("UserInfoID")]
        public virtual UserInfo UserInfo { get; set; }
    }

 public class Account
    {
        public int AccountID { get; set; }
        [Required, Column("Balance"), Display(Name = "Account Balance")]
        public double Balance { get; set; }
        public int UserInfoID { get; set; }
        [ForeignKey("UserInfoID")]
        public virtual UserInfo UserInfo { get; set; }
    }
4

1 回答 1

2

根据您的要求,您所拥有的似乎是正确的,但是在使用 Code First 配置您的实体时,我个人更喜欢实体框架模型构建器。

使用模型构建器意味着您的 POCO 实体上没有任何属性,这反过来意味着您不需要 EF 引用来使用实体。

在这里查看我的文章,了解有关如何使用模型构建器的更多信息:http: //blog.staticvoid.co.nz/2012/07/entity-framework-navigation-property.html

于 2012-07-20T23:05:37.767 回答