0
我想在代碼第一個EF中對此進行建模。一個國家的比賽可以是特定的(例如當地聯盟,也就是一個大洲),一個大洲(例如歐洲盃)或兩者都不是(例如世界盃)代碼優先建模關係
我有一個競賽類,國家級大陸。國家與大陸之間存在一對多關係。我如何模擬比賽?這似乎不正確
public class Competition{
public int CompetitionID { get; set; }
public int Name { get; set; }
public virtual ICollection<Season> Seasons { get; set; }
public Country? Country { get; set; }
public Continent? Continent { get; set;}
}