私は.Netが初めてです。私は2つのオブジェクトを持ってCustomer
おりCountry
、私のプロジェクトには:
public class Customer
{
public int CustomerId {get;set;}
public string CustomerName {get;set}
public String Street {get;set}
public String Address {get;set}
public int CountryId {get;set}
//...o
}
public class Country
{
public int CountryId {get;set;}
public String CountryName{get;set}
}
2 つのリストがList<Customer>
あり、List<Country>.
SQL 結合ステートメントを使用して、顧客と国を一覧表示しています。しかし、顧客と国名を含む単一のリストを作成する方法がわかりません。
そのために別のクラスを作成する必要がありますか?
前もって感謝します。