共用方式為


DbExpressionBuilder.And(DbExpression, DbExpression) 方法

定義

建立 DbAndExpression,它會對左右引數執行邏輯 And 運算。

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

參數

left
DbExpression

指定左引數的布林運算式。

right
DbExpression

指定右引數的布林運算式。

傳回

具有指定之引數的新 DbAndExpression。

例外狀況

leftright 為 null。

leftright 沒有布林結果類型。

適用於