我有以下性質的實體:獲取簡單的屬性和導航屬性之間的映射 - 實體框架5
簡單的屬性:
public int ParentLocationID {get; set;}
public int ChildLocationID {get; set;}
導航屬性:
public Location Location1 {get; set;}
public Location Location2 {get; set;}
在這裏,無論是簡單的屬性引用與位置表的外鍵關係。當我打開模型的Designer.cs時,可以使用此信息。
但是我怎麼能在代碼中知道ParentLocationID正在使用哪個導航屬性Location1或Location2?
你可以發佈你的實體類嗎?你也可以查看這個頁面。 http://www.learnentityframeworkcore.com/configuration/data-annotation-attributes/foreignkey-attribute。 – Miguel
@Haksu實體類與我剛剛提到的其他簡單屬性類似。另外,我的場景不是IEntityCollection的場景。它用於一對一映射。 – Mustafa