I have a list of objects that have a property Rank. This is an integer.
I want to sort by rank on my view but when i do this:
myObjects = myObjects.Orderby(r=>r.Rank);
i get all of the zeros (meaning these haven't been set at the top)
I want to order by 1 --> n but have the zeros be at the bottom of the list.
I would like it to be as efficient a sort as possible as the list is quite long