[Solved] My sorting is not returning correctly in Linq [closed]

[ad_1]

You are not returning the sorted collection.

IEnumerable<Customer> result = orderings[sortExpression](customerQuery.Skip(startRows).Take(maxRows));
return result;

3

[ad_2]

solved My sorting is not returning correctly in Linq [closed]