EdmFunctions.Replace(DbExpression, 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 DbFunctionExpression , który wywołuje funkcję kanoniczną "Replace" z określonymi argumentami, które muszą mieć typ wyniku ciągu. Typ wyniku wyrażenia jest również ciągiem.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionExpression ^ Replace(System::Data::Common::CommandTrees::DbExpression ^ stringArgument, System::Data::Common::CommandTrees::DbExpression ^ toReplace, System::Data::Common::CommandTrees::DbExpression ^ replacement);
public static System.Data.Common.CommandTrees.DbFunctionExpression Replace (this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression toReplace, System.Data.Common.CommandTrees.DbExpression replacement);
static member Replace : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Replace (stringArgument As DbExpression, toReplace As DbExpression, replacement As DbExpression) As DbFunctionExpression
Parametry
- stringArgument
- DbExpression
Wyrażenie, które określa ciąg, w którym ma być wykonywana operacja zamiany.
- toReplace
- DbExpression
Wyrażenie, które określa ciąg, który jest zastępowany.
- replacement
- DbExpression
Wyrażenie określające ciąg zastępczy.
Zwraca
Nowa funkcja DbFunctionExpression niż zwraca nowy ciąg na stringArgument
podstawie miejsca, w którym każde wystąpienie toReplace
elementu jest zastępowane przez .replacement
Wyjątki
stringArgument
lub toReplace
replacement
jest null
.
stringArgument
lub toReplace
replacement
jest nieprawidłowy.