score:2

Accepted answer
var feeds = (
   from f in mycontext.tblfeeds
   order by f.subscribers.count() descending
   select f
   ).take(5);