I have a list of users that I want to order by an ID. So now the list is ordered by a users fullname like this:
OrderBy(m => m.FullName).ToList();
What I want to do is order this list so a specific id is set to be at the start index.
So the pseudo code would be:
var passedId = 2123
OrderBy(m=>m.ID); // And then set passedId to be in the start index of the list
Is this possible ?
Thanks.