我是新來的實體框架,現在我可以通過id加載父項。在實體框架中從父項中獲取子項4
但是我想在我加載父項後從父項訪問子項屬性。
protected void getChild_Click(object sender, EventArgs e)
{
JeansEntities db = new JeansEntities();
Employe employe = db.Employes.SingleOrDefault(p => p.Id == 3);
uxCountry.Text = //(address.Country) Its the child of Employe, but I can acces by the parent
}
感謝
我做兩個答案的代碼行,我仍然可以訪問地址子... – FrankSharp
根據你的圖,你的員工有多個地址。你期望得到哪一個? –