Metodo EdmFunctions.Right
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Crea un oggetto DbFunctionExpression che richiama la funzione 'Right' canonica con gli argomenti specificati, che devono presentare un tipo di risultato numerico String e Integer. Il tipo di risultato dell'espressione è String.
Spazio dei nomi: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
<ExtensionAttribute> _
Public Shared Function Right ( _
stringArgument As DbExpression, _
length As DbExpression _
) As DbFunctionExpression
'Utilizzo
Dim stringArgument As DbExpression
Dim length As DbExpression
Dim returnValue As DbFunctionExpression
returnValue = stringArgument.Right(length)
public static DbFunctionExpression Right(
this DbExpression stringArgument,
DbExpression length
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ Right(
DbExpression^ stringArgument,
DbExpression^ length
)
static member Right :
stringArgument:DbExpression *
length:DbExpression -> DbFunctionExpression
public static function Right(
stringArgument : DbExpression,
length : DbExpression
) : DbFunctionExpression
Parametri
- stringArgument
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Espressione che specifica la stringa da cui estrarre la sottostringa più a destra.
- length
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Espressione che specifica la lunghezza della sottostringa più a destra da estrarre da stringArgument.
Valore restituito
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Nuovo elemento DbFunctionExpression che restituisce la sottostringa più a destra di lunghezza length da stringArgument.
Nota sull'utilizzo
In Visual Basic e C# è possibile chiamare questo metodo come metodo di istanza su qualsiasi oggetto di tipo DbExpression. Per chiamare il metodo usando la sintassi del metodo di istanza, omettere il primo parametro. Per altre informazioni, vedere https://msdn.microsoft.com/it-it/library/bb384936(v=vs.113) o https://msdn.microsoft.com/it-it/library/bb383977(v=vs.113).
Eccezioni
Eccezione | Condizione |
---|---|
ArgumentNullException | stringArgument o length è null. |
ArgumentException | Nessun overload della funzione 'Right' canonica accetta un argomento con il tipo di risultato stringArgument. |
Vedere anche
Riferimento
Spazio dei nomi System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder