[Solved] My sorting is not returning correctly in Linq [closed]
You are not returning the sorted collection. IEnumerable<Customer> result = orderings[sortExpression](customerQuery.Skip(startRows).Take(maxRows)); return result; 3 solved My sorting is not returning correctly in Linq [closed]