共用方式為


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 之間沒有相等比較的項目型別的一般集合結果型別。

適用於