DbExpressionBuilder.And(DbExpression, DbExpression) Método

Definición

Crea un DbAndExpression objeto que realiza los argumentos lógicos And de la izquierda y derecha.

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

Parámetros

left
DbExpression

Expresión booleana que especifica el argumento izquierdo.

right
DbExpression

Expresión booleana que especifica el argumento correcto.

Devoluciones

Nuevo DbAndExpression con los argumentos especificados.

Excepciones

left o right es null.

left y right no tiene un tipo de resultado booleano.

Se aplica a