When dealing with fine universe selection, I have only seen examples use something like this...

var sortedBy_PEGRatio = fine.OrderByDescending(x => x.ValuationRatios.PEGRatio); var takeFine = sortedBy_PEGRatio.Take(10);

But I want to sort it in ascending order. When I try to use "OrderByAscending" I get errors saying it doesn't exist.

What should I use to take the lowest values or sort in  ascending order?

Author