共用方式為


EdmFunctions.Right(DbExpression, DbExpression) 方法

定義

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

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

參數

stringArgument
DbExpression

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

length
DbExpression

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

傳回

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

例外狀況

stringArgumentlengthnull

stringArgument 無效。

適用於