共用方式為


EdmFunctions.Left(DbExpression, DbExpression) 方法

定義

建立 DbFunctionExpression,其會利用指定的引數叫用標準 'Left' 函式,此作業的結果類型必須是字串與整數。 運算式的結果類型為字串。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ Left(System::Data::Common::CommandTrees::DbExpression ^ stringArgument, System::Data::Common::CommandTrees::DbExpression ^ length);
public static System.Data.Common.CommandTrees.DbFunctionExpression Left (this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length);
static member Left : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Left (stringArgument As DbExpression, length As DbExpression) As DbFunctionExpression

參數

stringArgument
DbExpression

運算式,指定要從中擷取最左邊子字串的字串。

length
DbExpression

表達式,指定要從 stringArgument中擷取的最左邊子字元串長度。

傳回

傳回 長度lengthstringArgument最左邊子字串的新 DbFunctionExpression。

例外狀況

stringArgumentlengthnull

stringArgument 無效。

適用於