c# - Cannot resolve symbol 'ToPagedList' -
i working following tutorial on mvc 5 in c# .net 4.5
sorting, filtering, , paging entity framework in asp.net mvc application
i compile error "cannot resolve symbol 'topagedlist'"
i wondering if turorial out of date or missing something?

these using statements
using system.data.entity; using system.linq; using system.net; using system.web.mvc;
it seems tutorial using pagedlist pagination. may need install required components using pagedlist in code. here link nuget
through package manager console can do
pm> install-package pagedlist.mvc link post on detailing step-by-step process on how can use pagedlist in mvc application.
Comments
Post a Comment