EntityFunctions.Left(String, Nullable<Int64>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當做LINQ to Entities查詢的一部分使用時,這個方法會叫用標準 Left EDM 函式,以傳回字串中最左邊字元的指定數目。
[System.Data.Entity.DbFunction("Edm", "Left")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="length")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId="string")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="stringArgument")]
public static string Left (string stringArgument, Nullable<long> length);
static member Left : string * Nullable<int64> -> string
Public Shared Function Left (stringArgument As String, length As Nullable(Of Long)) As String
參數
- stringArgument
- String
輸入字串。
傳回
字串,包含輸入字串左邊要求的字元數。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在LINQ to Entities查詢內。 此函式會轉譯為資料庫中的對應函式。