共用方式為


EntityFunctions.Right(String, Nullable<Int64>) 方法

定義

當做LINQ to Entities查詢的一部分使用時,這個方法會叫用標準 Right EDM 函式,以傳回字串中最右邊字元的指定數目。

[System.Data.Entity.DbFunction("Edm", "Right")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="stringArgument")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="length")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId="string")]
public static string Right (string stringArgument, Nullable<long> length);
static member Right : string * Nullable<int64> -> string
Public Shared Function Right (stringArgument As String, length As Nullable(Of Long)) As String

參數

stringArgument
String

輸入字串。

length
Nullable<Int64>

要傳回的字元數

傳回

字串,包含輸入字串右邊要求的字元數。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在LINQ to Entities查詢內。 此函式會轉譯為資料庫中的對應函式。

適用於