私は2つのテーブルを持っています:Customer
そしてCustomer_Address
私は機能を持っています:
public IEnumerable<Customer_Address> ReadAddressForCustomer(int CustomerID)
{
ProjectServiceForCustomerDataContext DB = new ProjectServiceForCustomerDataContext();
var CA = (from C in DB.Customer_Addresses
join cust in DB.Customers
on C.CustomerID equals cust.ID
where C.CustomerID == CustomerID
select new
{
CustomerName=cust.Name,
CustomerAddress=C.Address,
CustomerTel=C.Telephone
}).ToList();
return CA;
}
ただし、フィールド ( )IEnumerable(Customer_Address)
があるため、CA は ではありません。Customer
cust.Name
この問題を解決するにはどうすればよいですか?