DbExpressionBuilder.And(DbExpression, DbExpression) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy obiekt DbAndExpression , który wykonuje logiczne argumenty And po lewej i prawej stronie.
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
Parametry
- left
- DbExpression
Wyrażenie logiczne określające argument po lewej stronie.
- right
- DbExpression
Wyrażenie logiczne określające właściwy argument.
Zwraca
Nowa dbAndExpression z określonymi argumentami.
Wyjątki
left
lub right
ma wartość null.
left
i right
nie ma typu wyniku logicznego.