私はEntityFrameworkを初めて使用しますが、今のところ、IDで親を読み込むことができます。
しかし、親をロードした後、親から子プロパティにアクセスしたいと思います。
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
}
ありがとう