DbExpressionBuilder.Except(DbExpression, DbExpression) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个新的 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
一个定义左侧集参数的表达式。
- right
- DbExpression
一个定义右侧集参数的表达式。
返回
一个新的 DbExceptExpression,表示从左侧参数和减去右侧参数的差异。
例外
left
或 right
为 null。
left
与 right
之间不存在任何常用集合结果类型。