DbFunctions.Reverse(String) 方法

定义

当用作 LINQ to Entities 查询的一部分时,此方法调用规范的 Reverse EDM 函数以返回给定字符串,其顺序与字符反转的顺序相同。

[System.Data.Entity.DbFunction("Edm", "Reverse")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="stringArgument")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId="string")]
public static string Reverse (string stringArgument);
static member Reverse : string -> string
Public Shared Function Reverse (stringArgument As String) As String

参数

stringArgument
String

输入字符串。

返回

以反转字符顺序显示的输入字符串。

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。 此函数将转换为数据库中的相应函数。

适用于