How do you page through a collection in LINQ given that you have a startIndex and a count?
|
|
|
A few months back I wrote a blog post about Fluent Interfaces and LINQ which used an Extension Method on
You can get the code from the MSDN Code Gallery Page: Pipelines, Filters, Fluent API and LINQ to SQL. |
||||
|
|
|
It is very simple with the
|
|||||||||||||
|
|
I solved this a bit differently than what the others have as I had to make my own paginator, with a repeater. So I first made a collection of page numbers for the collection of items that I have:
Using this I could easily partition the item collection into a collection of "pages". A page in this case is just a collection of items (
Of course you have to handle each page as an additional collection but e.g. if you're nesting repeaters then this is actually easy to handle. The one-liner TLDR version would be this:
Which can be used as this:
|
||||
|
|
|
This question is somewhat old, but I wanted to post my paging algorithm that shows the whole procedure (incl. user interaction). It also stores the "last page's offset" instead of skipping more and more of the same items, which would be somewhat inefficient.
|
||||
|
|

