3

当我们使用ASP.NET Boilerplate时,如何与下面提到的模型设置 1:1 的关系?提前致谢。

注 1:我已经看到关于 EF 一对一关系的这个很好的答案。但不幸的是,我不知道如何使用 ASP.NET Boilerplate 进行设置,因为 PK 是由 ABP 自动设置的。在我的场景中,两个表都有intPK。

注 2:这里的PropertyAddress模型具有 1:1 的关系。

Property型号

[Table("IpProperties")]
public class Property : FullAuditedEntity
{
    public virtual bool Vacant { get; set; }

    public virtual Address Address { get; set; }
}

Address型号

[Table("IpAddresses")]
public class Address : FullAuditedEntity
{ 
    [Required]
    [MaxLength(MaxLength)]
    public virtual string StreetNumber { get; set; }

    public virtual Property Property { get; set; }
}
4

2 回答 2

4

关系映射应该在OnModelCreating你的 DbContext 的方法中完成。您的 DbContext 类将位于 EntityFramework 文件夹下的 EntityFramework 项目中。

您可以使用以下内容:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    base.OnModelCreating(modelBuilder);
    modelBuilder.Entity<Property>().HasRequired(e => e.Address).WithOptional(e => e.Property);
}

如果 的Property属性Address不应该为空,则该.WithOptional()方法可以替换为WithRequiredDependent()WithRequiredPrincipal(),具体取决于用例。

另一个解决方案:

ABP 论坛 - 参考完整性问题 - 一对一的关系

于 2015-12-08T07:04:34.260 回答
0

您不会在 EF7 中找到 HasOptional 等效方法。按照惯例,如果您的 FK 属性可以为空,您的导航属性将被视为可选

 modelBuilder.Entity<Blog>()
                .HasOne(p => p.Document)
                .WithOne(i => i.CancelNote)
                .HasForeignKey<Document>(b => b.CancelNoteForeignKey);

关于您的第二个问题,EF Core (EF7) 不支持延迟加载。在此链接中,您将找到现在加载相关实体的选项

PS:请使用您自己的实体名称。

于 2018-04-04T10:27:04.757 回答