我在 LINQ - Full Outer Join 找到了这段代码:
var leftOuterJoin = from first in firstNames
join last in lastNames
on first.ID equals last.ID
into temp
from last in temp.DefaultIfEmpty(new { first.ID, Name = default(string) })
select new
{
first.ID,
FirstName = first.Name,
LastName = last.Name,
};
var rightOuterJoin = from last in lastNames
join first in firstNames
on last.ID equals first.ID
into temp
from first in temp.DefaultIfEmpty(new { last.ID, Name = default(string) })
select new
{
last.ID,
FirstName = first.Name,
LastName = last.Name,
};
包含这段代码的答案得到了很多赞成票,但我发现这里有些问题。在左外连接中,它对第二个实体使用 into
和 from
,在右外连接中,它做同样的事情。所以,这两种实现对我来说似乎都是一样的。你能告诉我左外连接和右外连接的区别吗?提前致谢。
编辑:
我认为右外连接应该是这样的:
var rightOuterJoin = from first in firstNames
join last in lastNames
on first.ID equals last.ID
into temp
from first in temp.DefaultIfEmpty(new { last.ID, Name = default(string) })
select new
{
last.ID,
FirstName = first.Name,
LastName = last.Name,
};
这是对不同类型联接的直观解释。
主要区别在于LEFT 将保留第一个表(或左表)中的所有记录,而RIGHT 将保留第二个表中的所有记录。
即使在记录中发现 NULL 值,OUTER 也会返回行。
我是一名优秀的程序员,十分优秀!