Just add the orderby clause ;-)
from a in Audits
join u in Users on a.UserId equals u.UserId
group a by a.UserId into g
let score = g.Sum(x => x.Score)
orderby score descending
select new { UserId = g.Key, Score = score };
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…