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?

cannot resolve symbol 'topagedlist'

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

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -