我刚刚开始使用EF代码,所以我在这个主题完全是一个初学者。
我想创建团队和比赛之间的关系:
1场比赛= 2支队伍(主队,客队)和结果。
我认为创建这样一个模型很容易,所以我开始编码:
public class Team
{
[Key]
public int TeamId { get; set;}
public string Name { get; set; }
public virtual ICollection<Match> Matches { get; set; }
}
public class Match
{
[Key]
public int MatchId { get; set; }
[ForeignKey("HomeTeam"), Column(Order = 0)]
public int HomeTeamId { get; set; }
[ForeignKey("GuestTeam"), Column(Order = 1)]
public int GuestTeamId { get; set; }
public float HomePoints { get; set; }
public float GuestPoints { get; set; }
public DateTime Date { get; set; }
public virtual Team HomeTeam { get; set; }
public virtual Team GuestTeam { get; set; }
}
我得到一个异常:
引用关系将导致不允许的循环引用。[约束名称= Match_GuestTeam]
我如何创建这样一个模型,有2个外键到同一个表?
我知道这是一个几年前的帖子,你可以用上面的解决方案解决你的问题。然而,我只是想建议那些仍然需要使用InverseProperty的人。至少你不需要改变OnModelCreating中的任何东西。
下面的代码未经测试。
public class Team
{
[Key]
public int TeamId { get; set;}
public string Name { get; set; }
[InverseProperty("HomeTeam")]
public virtual ICollection<Match> HomeMatches { get; set; }
[InverseProperty("GuestTeam")]
public virtual ICollection<Match> GuestMatches { get; set; }
}
public class Match
{
[Key]
public int MatchId { get; set; }
public float HomePoints { get; set; }
public float GuestPoints { get; set; }
public DateTime Date { get; set; }
public virtual Team HomeTeam { get; set; }
public virtual Team GuestTeam { get; set; }
}
你可以在MSDN: https://msdn.microsoft.com/en-us/data/jj591583?f=255&MSPPError=-2147217396#Relationships上阅读更多关于InverseProperty的信息
我知道这是一个几年前的帖子,你可以用上面的解决方案解决你的问题。然而,我只是想建议那些仍然需要使用InverseProperty的人。至少你不需要改变OnModelCreating中的任何东西。
下面的代码未经测试。
public class Team
{
[Key]
public int TeamId { get; set;}
public string Name { get; set; }
[InverseProperty("HomeTeam")]
public virtual ICollection<Match> HomeMatches { get; set; }
[InverseProperty("GuestTeam")]
public virtual ICollection<Match> GuestMatches { get; set; }
}
public class Match
{
[Key]
public int MatchId { get; set; }
public float HomePoints { get; set; }
public float GuestPoints { get; set; }
public DateTime Date { get; set; }
public virtual Team HomeTeam { get; set; }
public virtual Team GuestTeam { get; set; }
}
你可以在MSDN: https://msdn.microsoft.com/en-us/data/jj591583?f=255&MSPPError=-2147217396#Relationships上阅读更多关于InverseProperty的信息