DbExpressionBuilder.Union(DbExpression, DbExpression) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 DbExpression,它會計算左右集合引數的聯集,並移除重複的項目。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbExpression ^ Union(System::Data::Common::CommandTrees::DbExpression ^ left, System::Data::Common::CommandTrees::DbExpression ^ right);
public static System.Data.Common.CommandTrees.DbExpression Union (this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right);
static member Union : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbExpression
<Extension()>
Public Function Union (left As DbExpression, right As DbExpression) As DbExpression
參數
- left
- DbExpression
定義左集合引數的運算式。
- right
- DbExpression
定義右集合引數的運算式。
傳回
計算左邊與右邊引數無重複之聯集的新 DbExpression。
例外狀況
left
或 right
為 null。
left
和 right
之間沒有相等比較的項目型別的一般集合結果型別。