共用方式為


DbExpressionBuilder.Or(DbExpression, DbExpression) 方法

定義

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

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

參數

left
DbExpression

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

right
DbExpression

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

傳回

含有指定之引數的新 DbOrExpression。

例外狀況

leftright 為 null。

leftright 所產生之運算式沒有布林值結果類型。

適用於