如何在 LINQ 中使用 union all?

Posted

技术标签:

【中文标题】如何在 LINQ 中使用 union all?【英文标题】:How to use union all in LINQ? 【发布时间】:2012-05-08 18:50:50 【问题描述】:

如何在 LINQ TO SQL 中使用 union all。 我已经使用以下代码进行联合,那么如何将其用于联合所有?

List<tbEmployee> lstTbEmployee = obj.tbEmployees.ToList();
List<tbEmployee2> lstTbEmployee2 = (from a in lstTbEmployee
                                    select new tbEmployee2
                                    
                                        eid = a.eid,
                                        ename = a.ename,
                                        age = a.age,
                                        dept = a.dept,
                                        doj = a.doj,
                                        dor = a.dor

                                    ).Union(obj.tbEmployee2s).ToList();

【问题讨论】:

您应该将 Jon Crowell 的回答标记为“已接受” 【参考方案1】:

Concat 是 SQL 中 UNION ALL 的 LINQ 等效项。

我在 LINQPad 中设置了一个简单的示例来演示如何使用UnionConcat。如果您没有LINQPad,请获取。

为了能够看到这些集合操作的不同结果,第一组和第二组数据必须至少有一些重叠。在下面的示例中,两个集合都包含单词“not”。

打开 LINQPad 并将语言下拉菜单设置为 C# 语句。将以下内容粘贴到查询窗格中并运行它:

string[] jedi =  "These", "are", "not" ;
string[] mindtrick =  "not", "the", "droids..." ;

// Union of jedi with mindtrick
var union =
  (from word in jedi select word).Union
  (from word in mindtrick select word);

// Print each word in union
union.Dump("Union");
// Result: (Note that "not" only appears once)
// These are not the droids...

// Concat of jedi with mindtrick (equivalent of UNION ALL)
var unionAll =
  (from word in jedi select word).Concat
  (from word in mindtrick select word);

// Print each word in unionAll
unionAll.Dump("Concat");
// Result: (Note that "not" appears twice; once from each dataset)
// These are not not the droids...

// Note that union is the equivalent of .Concat.Distinct
var concatDistinct =
  (from word in jedi select word).Concat
  (from word in mindtrick select word).Distinct();

// Print each word in concatDistinct
concatDistinct.Dump("Concat.Distinct");
// Result: (same as Union; "not" only appears once)
// These are not the droids...

LinqPad 中的结果如下所示:

【讨论】:

以上是关于如何在 LINQ 中使用 union all?的主要内容,如果未能解决你的问题,请参考以下文章

如何将 sql union 转换为 linq

如何在 union all 中使用 order by

如何使用Unions更有效地进行LINQ查询

在android中使用UNION ALL时如何对特定语句使用order by

如何在 html 表中填充 UNION ALL 查询数据[关闭]

order by 和union all 如何共存