A little utility library to page an IQueryable collection.
int page = 1;
int itemsPerPage = 30;
IQueryable<StatusLogs> statusLogs = this.GetLogs();
IPaging<StatusLogs> pagedLogs = new Paging<StatusLogs>(statusLogs, page, itemsPerPage).Dump();
| Name | Name | Last commit date | ||
|---|---|---|---|---|