我有 3 张桌子。
例如客户、公司和地址。
客户已获得公司的参考。
公司有 2 个可空的地址引用(账单和运输),所以地址在某些情况下可能不存在。
我需要进行连接查询,但如果 whenCompany.BillingAddress
或Company.ShippingAddress
equals null
,我不会得到所有数据)。
我试过了(但它是错误的查询):
var res = (from client in context.Clients
join clientCompany in context.Companies
on client.ClientCompanyId equals clientCompany.Id
into clientCompanyJoin
from company in clientCompanyJoin
join addressBilling in context.Addresses
on company.BillingAddressId equals addressBilling.Id
join addressShipping in context.Addresses
on company.ShippingAddressId equals addressShipping.Id
select new
{
Client = client,
Company = company,
BillingAddress = ???????
ShippingAddress = ???????
}
);
你能帮我做一个连接查询或解释怎么做吗?
谢谢。