関連フィールド(外部キーCountryId)を持つ2つのビジネスオブジェクトがある場合、従業員クラスのリストを表示するとCountryIdの代わりにCountryNameを表示するにはどうすればよいですか?関連ビジネスオブジェクトの外部キー
public class Employee
{
public int Id { get; set; }
public string FirstName { get; set; }
public string FamilyName { get; set; }
public int CountryId { get; set; }
}
public class Country
{
public int Id { get; set; }
public string CountryName { get; set; }
}
もっと具体的にする必要があります。 ASP.NET、WinForms、WPF、Silverlightまたは何ですか?ディスプレイなどにどのコンポーネントを使用するのですか? –