public IEnumerable RatingSortShow() { Shows.Load(); var rs = (from s in ShowRepository.Shows orderby s.Rating descending select s).ToList(); return(rs); }