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

Definição

Cria um DbFunctionExpression que invoca a função 'Substring' canônica com os argumentos especificados, que deve ter tipos de resultados numérico inteiro e de cadeia de caracteres.Creates a DbFunctionExpression that invokes the canonical 'Substring' function with the specified arguments, which must have a string and integer numeric result types. O tipo de resultado da expressão é uma cadeia de caracteres.The result type of the expression is string.

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

Parâmetros

stringArgument
DbExpression

Uma expressão que especifica a cadeia de caracteres da qual extrair a subcadeia de caracteres.An expression that specifies the string from which to extract the substring.

start
DbExpression

Uma expressão que especifica o índice inicial do qual a subcadeia de caracteres deve ser obtida.An expression that specifies the starting index from which the substring should be taken.

length
DbExpression

Uma expressão que especifica o tamanho da subcadeia de caracteres.An expression that specifies the length of the substring.

Retornos

DbFunctionExpression

Um novo DbFunctionExpression que retorna a subcadeia de comprimento de stringArgument começando no início.A new DbFunctionExpression that returns the substring of length length from stringArgument starting at start.

Exceções

stringArgument start lengthstringArgument start length

stringArgument start lengthstringArgument start length

Comentários

Substring requer que o índice especificado por Start seja <b> baseado em 1 </b> .Substring requires that the index specified by start be <b>1-based</b>.

Aplica-se a