两个实体之间的代码优先外键

时间:2015-07-12 04:43:02

标签: c# entity-framework data-annotations ef-fluent-api

好的我在这里缺少什么,或者这是否可以通过数据注释完成?

我有一个文档实体模型,它具有添加文档的用户的外键(一对一关系):

[Table("Documents", Schema = "Configuration")]
public class Document : IPrimaryKey {
    [Key]
    public long Id { get; set; }

    [Required]
    public string OrginalName { get; set; }

    [Required]
    public DocumentTypes DocumentType { get; set; }

    [Required]
    public MIMETypes MIMEType { get; set; }

    [Required]
    public byte[] Data { get; set; }

    [DefaultValue(false)]
    public bool IsPublic { get; set; }

    [Required]
    public DateTimeOffset DateTimeAdded { get; set; }

    [Required]
    public long AddedByUser { get; set; }

    [ForeignKey("AddedByUser")]
    public virtual Details Details { get; set; }
}

然后我有一个用户(详细信息)实体,可以有一个图像文件(存储在文档实体模型中(无|一对一关系):

[Table("Details", Schema = "User")]
public class Details : IPrimaryKey {
    [Key]
    public long Id { get; set; }

    [Required]
    public string UserId { get; set; }

    [ForeignKey("UserId")]
    public AppUser User { get; set; }

    [Required]
    public string FirstName { get; set; }

    [Required]
    public string LastName { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<Address> Addresses { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<Email> Emails { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<PhoneNumber> PhoneNumbers { get; set; }

    public ICollection<NotificationHistory> NotificationHistory { get; set; }
    public long TimeZoneId { get; set; }

    public long? ImageId { get; set; }

    [ForeignKey("ImageId")]
    public virtual Document Document { get; set; }

    [ForeignKey("TimeZoneId")]
    public virtual TimeZone TimeZone { get; set; }
}

当我尝试创建迁移时,我收到此错误:

  

无法确定之间关联的主要结束   类型&#39; StACS.PeoplesVoice.DataAccessLayer.EntityModels.User.Details&#39;   和   &#39; StACS.PeoplesVoice.DataAccessLayer.EntityModels.Configuration.Document&#39 ;.   必须明确配置此关联的主要结尾   使用关系流畅的API或数据注释。

更新:

在研究这个问题的同时,我做了两处更改,并且能够解决错误,但这在我的数据库中造成了意想不到的结果。

在文档实体中,我添加了:

public virtual ICollection<Details> Details { get; set; }

在详细信息(用户)实体中,我添加了:

puflic virtual ICollection<Document> Documents { get; set; }

在我的数据库表中,我现在在我想要的字段上有外键,但我分别有一个辅助外键。

我尝试删除单个虚拟引用,只留下ICollection Virtual引用,现在我根本没有外键。

更新 (基于Akash Kava建议)

我做了以下更改     [表格(&#34;文件&#34;,架构=&#34;配置&#34;)]     public class Document:IPrimaryKey {         [需要]         public string OrginalName {get;组; }

    [Required]
    public DocumentTypes DocumentType { get; set; }

    [Required]
    public MIMETypes MIMEType { get; set; }

    [Required]
    public byte[] DocumentData { get; set; }

    [DefaultValue(false)]
    public bool IsPublic { get; set; }

    [Required]
    public DateTimeOffset DateTimeAdded { get; set; }

    [Required]
    public long AddedByUser { get; set; }

    [Key]
    public long Id { get; set; }

    [ForeignKey("AddedByUser")]

    [InverseProperty("Image")]

    public virtual Details User { get; set; }
}

[Table("Details", Schema = "User")]
public class Details : IPrimaryKey {
    [Required]
    public string UserId { get; set; }

    [ForeignKey("UserId")]
    public AppUser User { get; set; }

    [Required]
    public string FirstName { get; set; }

    [Required]
    public string LastName { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<Address> Addresses { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<Email> Emails { get; set; }

    [CollectionRequired(MinimumCollectionCount = 1)]
    public ICollection<PhoneNumber> PhoneNumbers { get; set; }

    public ICollection<NotificationHistory> NotificationHistory { get; set; }
    public long TimeZoneId { get; set; }
    public long? ImageId { get; set; }

    [ForeignKey("ImageId")]
    [InverseProperty("User")]
    public Document Image { get; set; } 

    [ForeignKey("TimeZoneId")]
    public virtual TimeZone TimeZone { get; set; }


    [Key]
    public long Id { get; set; }
}

我已注释掉Fluent API代码

  

无法确定之间关联的主要结束   类型&#39; StACS.PeoplesVoice.DataAccessLayer.EntityModels.User.Details&#39;   和   &#39; StACS.PeoplesVoice.DataAccessLayer.EntityModels.Configuration.Document&#39 ;.   必须明确配置此关联的主要结尾   使用关系流畅的API或数据注释。

2 个答案:

答案 0 :(得分:3)

您也可以使用数据注释实现相同的功能,您缺少InverseProperty属性,这可以解决这种情况下的歧义。从概念上讲,每个导航属性都具有反向导航属性,EF会根据类型自动检测并假设反向属性,但如果两个实体通过多个FK属性相互关联,则必须在相应的导航属性上显式指定InverseProperty属性。

我建议在每个导航属性上放置InverseProperty,这有助于减少EF的启动时间,因为EF不必确定和验证模型。

实施例,

public class AccountEmail {

    public long AccountID {get;set;}

    // Inverse property inside Account class
    // which corresponds to other end of this
    // relation
    [InverseProperty("AccountEmails")]
    [ForeignKey("AccountID")]
    public Account Account {get;set;}

}

public class Account{

    // Inverse property inside AccountEmail class
    // which corresponds to other end of this
    // relation
    [InverseProperty("Account")]
    public ICollection<AccountEmail> AccountEmails {get;set;}
}

我编写了一个文本模板,它根据当前架构生成所有这些导航属性。从https://github.com/neurospeech/atoms-mvc.net/tree/master/db-context-tt下载所有三个文件,您可能必须自定义它,因为它根据我们的框架添加了更多的东西,但它确实直接从您的数据库生成纯代码模型。

答案 1 :(得分:1)

好的,我终于想通了。遗憾的是,这并不是很直接,因为我认为数据注释应该可以工作,但事实并非如此。

您必须使用Fluent API:

        modelBuilder.Entity<Details>()
                    .HasOptional(x => x.Document)
                    .WithMany()
                    .HasForeignKey(x => x.ImageId);

        modelBuilder.Entity<Document>()
                    .HasRequired(x => x.User)
                    .WithMany()
                    .HasForeignKey(x => x.AddedByUser);