DbExpressionBuilder.Divide(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 nowy DbArithmeticExpression , który dzieli argument lewy przez prawy argument.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbArithmeticExpression ^ Divide(System::Data::Common::CommandTrees::DbExpression ^ left, System::Data::Common::CommandTrees::DbExpression ^ right);
public static System.Data.Common.CommandTrees.DbArithmeticExpression Divide (this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right);
static member Divide : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbArithmeticExpression
<Extension()>
Public Function Divide (left As DbExpression, right As DbExpression) As DbArithmeticExpression
Parametry
- left
- DbExpression
Wyrażenie, które określa argument po lewej stronie.
- right
- DbExpression
Wyrażenie, które określa właściwy argument.
Zwraca
Nowa funkcja DbArithmeticExpression reprezentująca operację dzielenia.
Wyjątki
left
lub right
ma wartość null.
Nie istnieje typ wspólnego wyniku liczbowego między wartościami left
lub right
.