DbExpressionBuilder.UnionAll(DbExpression, DbExpression) 方法

定义

创建一个新的 DbUnionAllExpression,它计算左侧集参数和右侧集参数的并集且不移除重复项。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbUnionAllExpression ^ UnionAll(System::Data::Common::CommandTrees::DbExpression ^ left, System::Data::Common::CommandTrees::DbExpression ^ right);
public static System.Data.Common.CommandTrees.DbUnionAllExpression UnionAll (this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right);
static member UnionAll : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbUnionAllExpression
<Extension()>
Public Function UnionAll (left As DbExpression, right As DbExpression) As DbUnionAllExpression

参数

left
DbExpression

一个定义左侧集参数的表达式。

right
DbExpression

一个定义右侧集参数的表达式。

返回

一个新的 DbUnionAllExpression,计算左参数和右参数的并集,包含重复部分。

例外

leftright 为 null。

leftright 之间不存在具有可进行相等比较的元素类型的任何常用集合结果类型。

适用于