EdmFunctions.Substring(DbExpression, DbExpression, DbExpression) Méthode

Définition

Crée un objet DbFunctionExpression appelant la fonction 'Substring' canonique avec les arguments spécifiés, qui doivent avoir un résultat de type numérique entier et chaîne. Le résultat de l’expression est de type chaîne.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ Substring(System::Data::Common::CommandTrees::DbExpression ^ stringArgument, System::Data::Common::CommandTrees::DbExpression ^ start, System::Data::Common::CommandTrees::DbExpression ^ length);
public static System.Data.Common.CommandTrees.DbFunctionExpression Substring (this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression start, System.Data.Common.CommandTrees.DbExpression length);
static member Substring : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Substring (stringArgument As DbExpression, start As DbExpression, length As DbExpression) As DbFunctionExpression

Paramètres

stringArgument
DbExpression

Expression qui spécifie la chaîne dont la sous-chaîne doit être extraite.

start
DbExpression

Expression qui spécifie l'index de départ dont la sous-chaîne doit être extraite.

length
DbExpression

Expression qui spécifie la longueur de la sous-chaîne.

Retours

Nouvelle DbFunctionExpression qui retourne la sous-chaîne de longueur length à partir startde stringArgument .

Exceptions

stringArgument, start ou length est null.

stringArgument, startou length n’est pas valide.

Remarques

La sous-chaîne nécessite que l’index spécifié par le démarrage soit <basé sur< b1>/b>.

S’applique à