我之前问过一个问题,为什么 Linq 中的左连接不能使用已定义的关系;到目前为止,我还没有得到满意的答复。
现在,在平行轨道上,我已经接受我需要使用join
关键字,就好像我的对象之间没有定义任何关系一样,我正在尝试找出如何在 Linq 中表达我的查询。麻烦的是,它是多个表之间的左连接的集合,连接中涉及多个字段。没有办法简化这一点,所以这里是 SQL 的所有未加掩饰的荣耀:
select *
from TreatmentPlan tp
join TreatmentPlanDetail tpd on tpd.TreatmentPlanID = tp.ID
join TreatmentAuthorization auth on auth.TreatmentPlanDetailID = tpd.ID
left join PatientServicePrescription rx on tpd.ServiceTypeID = rx.ServiceTypeID
left join PayerServiceTypeRules pstr on auth.PayerID = pstr.PayerID and tpd.ServiceTypeID = pstr.ServiceTypeID and pstr.RequiresPrescription = 1
where tp.PatientID = @PatientID
(仅供参考,如果它有助于理解我正在尝试做的事情:我正在尝试确定是否有任何TreatmentPlanDetail
记录,Patient
而授权Payer
需要为此开具处方ServiceType
,但要么没有ServicePerscription
记录,要么已经过期。 )
现在,这是我的 C# 代码的样子:
var q = from tp in TreatmentPlans
from tpd in tp.Details
from auth in tpd.Authorizations
join rx in ServicePrescriptions.DefaultIfEmpty() on tpd.ServiceTypeID equals rx.ServiceTypeID
// from pstr in auth.Payer.ServiceTypeRules.DefaultIfEmpty() -- very frustrating that this doesn't work!!
join pstr in LinqUtils.GetTable<PayerServiceTypeRules>().DefaultIfEmpty()
on new { auth.PayerID, tpd.ServiceTypeID, RxReq = (bool)true } equals new { pstr.PayerID, pstr.ServiceTypeID, pstr.RequiresPrescription }
select new { Payer = auth.Payer, Prescription = rx, TreatmentPlanDetail = tpd, Rules = pstr };
糟糕,无法编译!出于某种原因(我想解释一下)我不能在等值连接中使用那个字面布尔值!好吧,我将其省略,稍后过滤掉“RequiresPrescription”的东西......
...
join pstr in LinqUtils.GetTable<PayerServiceTypeRules>().DefaultIfEmpty()
on new { auth.PayerID, tpd.ServiceTypeID } equals new { pstr.PayerID, pstr.ServiceTypeID }
...
...现在它编译了 - 但是当我运行时,我在这一行得到一个“未设置对象引用”异常。 呃! 当然里面有一个空值!如果不允许您引用右侧的对象,那么您还应该如何与左连接进行比较,这可能是空的?
那么,您应该如何使用多个字段进行左连接?