I have a list of my custom class Customer and I want to sort them alphabetically by Title. So I wrote
myList = myList.OrderByDescending(x => x.Title).ToL
I my case: _My sorting list have value was encoded. This make my order incorrect. Add decoded solving my problems !