How to page multiple data sets in ASP.NET MVC
- by REA_ANDREW
On a single view I will have three sets of paged data. Which means for each model I will have
The Objects
The Page Index
The Page Size
My initial thought was for example:
public class PagedModel<T> where T:class
{
public IList<T> Objects { get; set; }
public int ModelPageIndex { get; set; }
public int ModelPageSize {…