PagedList
PagedList copied to clipboard
Nugget for easily paging through any IEnumerable/IQueryable in Asp.Net MVC
[Refers to this issue](https://github.com/troygoode/PagedList/issues/115). By passing in `int.MaxValue`, will get the last page rather than the first. So you can have it both ways.
I added the extension Select, as on large samples of their bases often have to be transformed into an DTO types, before selecting the desired page. So did, you can...
Added PagedListRenderOptions.EnableEllipsisNavigation with the default value of "false" for backward compatibility. Modified the HtmlHelper.Ellipses method to use the new render option. The pager will use the page before/after the last...
`IEnumerable.Count()` will run the query twice if called twice http://stackoverflow.com/questions/5050326/why-is-ienumerable-count-reevaluating-the-query This caches the value to avoid reevaluation.
Sometimes required to perform ajax queries to a different url address. It requires tag attribute "data-ajax-url". I changed the helper methods for this feature (leaving backward compatibility): Using helper method...