Asp.net – InvalidCastException: Unable to cast object of type 'System.Linq.OrderedEnumerable to type 'System.Collections.Generic.List
In Asp.Net 4.8 web app, the following works. I'm using PagedList for pagination. private AppDbContext db = new AppDbContext(); private IQueryable<Border> Broders; public ViewResult Index(int? page) { Broders = from s in db.Broders select s; if (SearchColumn == "T1") {…