I have table Players with columns: ID Name Points
What is most efficient way to get player position ordered by points using LINQ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Any solution will require at least one iteration through all elements, but the following will suffice:
This will order the elements in one pass and then store the result in a list to preserve the ordering without need to ‘order’ again: