DbExpressionBuilder.Or(DbExpression, DbExpression) 方法

定义

创建一个 DbOrExpression,它对左侧参数和右侧参数执行逻辑“或”运算。

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 生成的表达式不具有布尔结果类型。

适用于