I have this simple query ->
var games =
from p in _oListGames
where p.Visitor == team.ID
select p
I would like to order this select with the COUNT of total games that the p.Visitor has from that list(_oListGames)
How would I do that?
I would like to order the var "games" by the numbers of visitor games they have currently.