was hoping for a little help.
I am retrieving the following list from a database.
Name AssessNumber Score
John 1 90
John 2 88
John 3 67
Steve 1 98
Steve 2 90
what I want is to group by average scores and display highest asessment number(int)
Name AssessNumber Score
John 3 81.6
Steve 2 94
The data will be stored in a List<lbResults>lb = new List<lbResults>()
How can I achieve this?
kind Regards