EdmFunctions.Replace(DbExpression, DbExpression, DbExpression) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vytvoří objekt DbFunctionExpression , který vyvolá kanonickou funkci Replace se zadanými argumenty, z nichž každý musí mít typ výsledku řetězce. Typ výsledku výrazu je také řetězec.
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
Výraz, který určuje řetězec, ve kterém se má provést operace nahrazení.
- toReplace
- DbExpression
Výraz, který určuje řetězec, který je nahrazen.
- replacement
- DbExpression
Výraz, který určuje náhradní řetězec.
Návraty
Nový DbFunctionExpression than vrátí nový řetězec na stringArgument
základě toho, kde je každý výskyt toReplace
nahrazen replacement
.
Výjimky
stringArgument
replacement
nebo toReplace
je null
.
stringArgument
nebo toReplace
replacement
je neplatný.