I know in normal Linq grammar, orderby xxx descending is very easy, but how do I do this in Lambda expression?
orderby xxx descending
Try this another way:
var qry = Employees .OrderByDescending (s => s.EmpFName) .ThenBy (s => s.Address) .Select (s => s.EmpCode);
Queryable.ThenBy