EdmFunctions.Reverse Method (DbExpression)
Creates a DbFunctionExpression that invokes the canonical 'Reverse' function with the specified argument, which must have a string result type. The result type of the expression is also string.
Assembly: EntityFramework (in EntityFramework.dll)
Parameters
- stringArgument
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the string to reverse.
Return Value
Type: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpressionA new DbFunctionExpression that produces the reversed value of stringArgument.
Exception | Condition |
---|---|
ArgumentNullException | stringArgument is null. |
ArgumentException | No overload of the canonical 'Reverse' function accepts an argument with the result type of stringArgument. |