Is it possible to get listitems between a specified Row Index Boundary from a list using CAML
Ex: if there are 10000 records I would like to fetch records between 201 - 250
|
Is it possible to get listitems between a specified Row Index Boundary from a list using CAML Ex: if there are 10000 records I would like to fetch records between 201 - 250 |
|||
|
|
|
You can use below code in your solutions- SPQuery w = new SPQuery() ; w.RowLimit = 10; w.Query = "1570"; |
|||||||
|
|
This link has some info about generating pages of results in a CAML query, I have heard that this is ill-advised, though the function detailed in the article seems like a good solution: |
|||
|
|