DbExpressionBuilder.And(DbExpression, DbExpression) 方法

定义

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

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 没有布尔结果类型。

适用于