0

我首先在实体框架代码中遇到了一对多类型的双重关系问题。看图:http: //i43.tinypic.com/5u2x03.png

在课堂上,我有:

public virtual ICollection<Mecz> Hosts{ get; set; }
public virtual ICollection<Mecz> Gests{ get; set; }

课堂比赛:

public virtual Club Club { get; set; }

当更新数据库时,我有 3 个外键,但我认为应该只有 2 个。有什么特殊方法可以使这种关系正常工作吗?

4

2 回答 2

0

使用 Entity Framework Power Tools 查看 EF 对您的设置的看法。

http://www.infoq.com/news/2013/10/ef-power-tools-beta4

右键单击您的数据上下文类并执行 Entity Framework-View Entity Data Model。

如果您在 Mecz 上有导航属性,并且还放入 Id 属性,这可能会有所帮助。

public class Mecz {
    public int HostAtId{get; set;}
    public virtual Club HostAt{get; set;}
    public int GestAtId{get; set;}
    public virtual Club GestAt{get; set;}
}

那么你不需要有 Club in Match:你可以说

Match.Gest.GestAt
于 2013-12-08T18:57:12.420 回答
0

我自己解决了问题。在我的回答下面,也许有人需要它。

比赛等级:

    public class Match
{
    [Key]
    public int MatchID { get; set; }

    public int HostID { get; set; }
    [ForeignKey("HostID")]
    public virtual Club Hosts{ get; set; }

    public int GestID { get; set; }
    [ForeignKey("GestID")]
    public virtual Club Gests{ get; set; }

}

俱乐部等级:

    public class Club
{
    public int ClubID { get; set; }

    public string ClubName{ get; set; }

    public virtual ICollection<Match> Host{ get; set; }
    public virtual ICollection<Match> Gest{ get; set; }
}

在 OnModelCreating 的 MyDbContext 中,我添加了以下代码:

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {

        modelBuilder.Entity<Match>()
        .HasRequired(x => x.Host)
        .WithMany(x => x.Host)
        .WillCascadeOnDelete(false);

        modelBuilder.Entity<Match>()
        .HasRequired(x => x.Gest)
        .WithMany(x => x.Gest)
        .WillCascadeOnDelete(false);
    }
于 2014-01-05T10:07:52.860 回答