EntityFunctions.Reverse(String) Method

Definition

Invokes the canonical Reverse function. For information about the canonical Reverse function, see String Canonical Functions.

public:
 static System::String ^ Reverse(System::String ^ stringArgument);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "Reverse")]
public static string Reverse (string stringArgument);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "Reverse")>]
static member Reverse : string -> string
Public Shared Function Reverse (stringArgument As String) As String

Parameters

stringArgument
String

A valid string.

Returns

The input string with the order of the characters reversed.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database.

Applies to