EntityFunctions.Reverse(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.