5

很简单,我首先使用 Entity Framework 4.1 代码,我想用对 modelBuilder 的流畅调用替换我的 [ForeignKey(..)] 属性。类似于 WithRequired(..) 和 HasForeignKey(..) 的东西将显式外键属性 (CreatedBySessionId) 与关联的导航属性 (CreatedBySession) 联系在一起。但我想为一对一的关系而不是一对多的关系这样做:

modelBuilder.Entity<..>().HasMany(..).WithRequired(x => x.CreatedBySession).HasForeignKey(x => x.CreatedBySessionId)

下面是一个更具体的例子。这与 [ForeignKey(..)] 属性一起工作非常愉快,但我想取消它并纯粹在模型构建器上配置它。

public class VendorApplication
{
    public int VendorApplicationId { get; set; }

    public int CreatedBySessionId { get; set; }
    public virtual Session CreatedBySession { get; set; }
}

public class Session
{
    public int SessionId { get; set; }

    [ForeignKey("CurrentApplication")]
    public int? CurrentApplicationId { get; set; }
    public virtual VendorApplication CurrentApplication { get; set; }

    public virtual ICollection<VendorApplication> Applications { get; set; }
}

public class MyDataContext: DbContext
{
    public IDbSet<VendorApplication> Applications { get; set; }
    public IDbSet<Session> Sessions { get; set; }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Entity<Session>().HasMany(x => x.Applications).WithRequired(x => x.CreatedBySession).HasForeignKey(x => x.CreatedBySessionId).WillCascadeOnDelete(false); 
        // Note: We have to  turn off Cascade delete on Session <-> VendorApplication relationship so that SQL doesn't complain about cyclic cascading deletes
    }
}

这里一个 Session 可以负责创建许多 VendorApplications (Session.Applications),但是一个 Session 一次最多在一个 VendorApplication 上工作 (Session.CurrentApplication)。我想将 CurrentApplicationId 属性与 modelBuilder 中的 CurrentApplication 导航属性绑定,而不是通过 [ForeignKey(..)] 属性。

我尝试过的事情

当您删除 [ForeignKey(..)] 属性时,CurrentApplication 属性会在数据库中生成一个 CurrentApplication_VendorApplicationId 列,该列未绑定到 CurrentApplicationId 列。

我已经尝试使用 CurrentApplicationId 列名显式映射关系,如下所示,但显然这会产生错误,因为属性 Session.CurrentApplicationId 已经在使用数据库列名“CurrentApplicationId”:

modelBuilder.Entity<Session>().HasOptional(x => x.CurrentApplication).WithOptionalDependent().Map(config => config.MapKey("CurrentApplicationId"));

感觉就像我在这里遗漏了一些非常明显的东西,因为我想做的只是在模型构建器中执行与 [ForeignKey(..)] 相同的操作。还是这是一种不好的做法并且被明确排除在外的情况?

4

1 回答 1

10

您需要将关系映射为一对多并省略关系中的集合属性。

modelBuilder.Entity<Session>()
   .HasOptional(x => x.CurrentApplication)
   .WithMany()
   .HasForeignKey(x => x.CurrentApplicationId)
于 2012-07-14T01:10:20.543 回答