我正在使用 C# 中的 MVVM 模式。我有一个 PlaceChild、PlaceChildList 类和一个包含 PlaceChildList 的 Manage 类。PlaceChild 的 ForeignKey 为 ManageID。
我想在 Manage 类的“LoadProperty”方法中用具有 ManageID 外键的 PlaceChild 填充 PlaceChildList。我知道有一种特殊的方法来处理外键,但我找不到任何东西。
简短:
类-->
管理
PlaceChild
PlaceChildList
Manage 包含我想用具有 Manage 的 ForeignKey 的 PlaceChild 对象填充的 PlaceChildList。
表格 -->
管理
地点(ForeignKey = ManageID)
private void LoadData(Data.Manage data)
{
using (BypassPropertyChecks)
{
this.ID = data.ID;
this.Name = data.Name;
// this.PlaceChildListdata = .... get data by foreign key this.ID
}
}