DbExpressionBuilder.Intersect(DbExpression, DbExpression) 方法

定义

创建一个新的 DbIntersectExpression,它计算左侧集参数和右侧集参数的交集。

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

参数

left
DbExpression

一个定义左侧集参数的表达式。

right
DbExpression

一个定义右侧集参数的表达式。

返回

一个新的 DbIntersectExpression,表示左侧参数和右侧参数的交集。

例外

leftright 为 null。

leftright 之间不存在任何常用集合结果类型。

适用于