I have a query where it reverse the characters and capitalize the first letter after the reversed. In my T-SQL, it's working but when I'm trying to convert it to Linq query, I'm having a issues that says
Reverse is not supported
Here's my working query
Upper(Left(REVERSE(Firstname),1))+Lower(Reverse(Left(Right(Firstname, LEN(Firstname)),LEN(Firstname)-1))) as NameReverse
// "Name" is the result without reverse, but after the reverse query, it will be
// "Eman"
Here's my reverse in linq that doesn't work
TheLengthOfName = name.FirstName.Reverse()
Thank you in advance.