为了账号安全,请及时绑定邮箱和手机立即绑定

LINQ to SQL - 具有多个连接条件的左外连接

LINQ to SQL - 具有多个连接条件的左外连接

RISEBY 2019-08-24 16:50:14
LINQ to SQL - 具有多个连接条件的左外连接我有以下SQL,我试图将其转换为LINQ:SELECT f.valueFROM period as p LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17WHERE p.companyid = 100我已经看到了左外连接的典型实现(即into x from y in x.DefaultIfEmpty()等),但我不确定如何引入其他连接条件(AND f.otherid = 17)编辑为什么AND f.otherid = 17条件是JOIN的一部分而不是WHERE子句?因为f某些行可能不存在,我仍然希望包含这些行。如果条件在WHERE子句中应用,在JOIN之后 - 那么我没有得到我想要的行为。不幸的是:from p in context.Periodsjoin f in context.Facts on p.id equals f.periodid into fgfrom fgi in fg.DefaultIfEmpty()where p.companyid == 100 && fgi.otherid == 17select f.value似乎等同于:SELECT f.valueFROM period as p LEFT OUTER JOIN facts AS f ON p.id = f.periodid WHERE p.companyid = 100 AND f.otherid = 17这不是我想要的。
查看完整描述

3 回答

?
波斯汪

TA贡献1811条经验 获得超4个赞

您需要在致电前介绍您的加入条件DefaultIfEmpty()。我只想使用扩展方法语法:

from p in context.Periodsjoin f in context.Facts on p.id equals f.periodid into fgfrom fgi in fg.Where(f => f.otherid == 17).DefaultIfEmpty()where p.companyid == 100select f.value

或者您可以使用子查询:

from p in context.Periodsjoin f in context.Facts on p.id equals f.periodid into fgfrom fgi in (from f in fg             where f.otherid == 17
             select f).DefaultIfEmpty()where p.companyid == 100select f.value


查看完整回答
反对 回复 2019-08-24
?
Helenr

TA贡献1780条经验 获得超4个赞

在我看来,在尝试翻译它之前,考虑对SQL代码进行一些重写是有价值的。

就个人而言,我会写一个像union这样的查询(虽然我完全避免使用null!):

SELECT f.value
  FROM period as p JOIN facts AS f ON p.id = f.periodid
WHERE p.companyid = 100
      AND f.otherid = 17UNION
SELECT NULL AS value
  FROM period as p
WHERE p.companyid = 100
      AND NOT EXISTS ( 
                      SELECT * 
                        FROM facts AS f
                       WHERE p.id = f.periodid
                             AND f.otherid = 17
                     );

所以我想我同意@ MAbraham1答案的精神(尽管他们的代码似乎与这个问题无关)。

但是,似乎查询明确地设计为生成包含重复行的单个列结果 - 实际上是重复的空值!很难不得出这种方法存在缺陷的结论。


查看完整回答
反对 回复 2019-08-24
  • 3 回答
  • 0 关注
  • 1259 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信