DbExpressionBuilder.UnionAll(DbExpression, DbExpression) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个新的 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,计算左参数和右参数的并集,包含重复部分。
例外
left
或 right
为 null。
left
和 right
之间不存在具有可进行相等比较的元素类型的任何常用集合结果类型。