Background:
I have been working on this problem for several days. I have an mvc3 app that is modeled after the Contoso University tutorial using
- pagedlist 1.7
- EF 4.1
- Visual Studion 2010 sp1
This solution works fine on my old XP box but I'm trying to move it to a new Win 7 box with EF 4.5
Problem #1 - resolved (?)
Original problem was the System.Security.VerificationException error
Even though Package Manager says it installed the new 1.15 version of PagedList, the properties of the PagedList reference still said version 1.7. I had to manuall copy the PagedList.dll and .xml from the Packages folder to the bin folder in the solution (the packages.config said that version 1.15 was successfully added to my solution --- but the bin folder still had version 1.7 installed)
Current Problem
Now that I seem to be working with PagedList version 1.15, I am now getting a System.ArgumentOutOfRangeException occurred in PagedList.dll.
Question
Does upgrading from PagedList 1.7 to 1.15 require an application code change on my part?
my code---
int pageSize = 10;
int pageIndex = (page ?? 1) - 1;
return View("IndexRegistrationPaginate2", patientdisplay.ToPagedList(pageIndex, pageSize));
I guess I don't understand Troy Goode's Example 2: Manual Paging......
Am I missing the totalUserCount parameter???
int pageIndex = (page ?? 1) - 1;should be replaced byint pageIndex = page;. ThepageIndexpassed intoToPagedListwas changed to map1to the first page (rather than mapping the first page to0) in release 1.9. – Troy Jan 2 at 16:22