EdmFunctions.StartsWith(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á kanonické funkce StartsWith se zadanými argumenty, z nichž každý musí mít typ výsledku řetězce. Typ výsledku výrazu je Logická hodnota.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionExpression ^ StartsWith(System::Data::Common::CommandTrees::DbExpression ^ stringArgument, System::Data::Common::CommandTrees::DbExpression ^ prefix);
public static System.Data.Common.CommandTrees.DbFunctionExpression StartsWith (this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression prefix);
static member StartsWith : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function StartsWith (stringArgument As DbExpression, prefix As DbExpression) As DbFunctionExpression
Parametry
- stringArgument
- DbExpression
Výraz, který určuje řetězec, který se hledá na začátku pro řetězec prefix
.
- prefix
- DbExpression
Výraz, který určuje cílový řetězec, který se hledá na začátku .stringArgument
Návraty
Nový DbFunctionExpression, který vrací logickou hodnotu označující, jestli začíná na stringArgument
prefix
.