EdmFunctions.Left(DbExpression, DbExpression) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un oggetto DbFunctionExpression che richiama la funzione canonica "Left" con l'argomento specificato, che deve avere una stringa e un numero intero come tipo di risultato. Il tipo di risultato dell'espressione è stringa.
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression Left (this System.Data.Entity.Core.Common.CommandTrees.DbExpression stringArgument, System.Data.Entity.Core.Common.CommandTrees.DbExpression length);
static member Left : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Left (stringArgument As DbExpression, length As DbExpression) As DbFunctionExpression
Parametri
- stringArgument
- DbExpression
Espressione che specifica la stringa da cui estrarre la sottostringa più a sinistra.
- length
- DbExpression
Espressione che specifica la lunghezza della sottostringa più a sinistra per estrarre da stringArgument.
Restituisce
Nuovo oggetto DbFunctionExpression che restituisce la sottostringa più a sinistra di lunghezza length da stringArgument.