我是.Net 的新手。我有两个对象,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}
}
我有两个列表,List<Customer>
并且List<Country>.
我正在使用 sql join 语句来列出国家/地区的客户。但我很困惑如何创建一个包含客户和国家名称的列表。
是否有必要为此创建单独的类?
提前致谢。