共用方式為


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 之間沒有一般集合結果類型。

適用於