DbExpressionBuilder.Except(DbExpression, DbExpression) メソッド

定義

左の set 引数から右セット引数の減算を計算する新しい DbExceptExpression を作成します。

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

パラメーター

left
DbExpression

左の set 引数を定義する式。

right
DbExpression

右の set 引数を定義する式。

返品

左引数と右引数の差を表す新しい DbExceptExpression。

例外

left または right が null です。

leftrightの間に共通のコレクション結果の種類が存在しません。

適用対象