How it works
Similar to LINQ, the Episerver Find .NET API has Skip and Take methods to bypass a number of search results and specify how many search results should be returned (respectively). Unlike LINQ, search results in Find are by default limited to 10. The maximum value that can be specified using the Take method is 1000. In other words, Take(1001) or Take(int.MaxValue) throws an exception. If more than a thousand result items are needed, use multiple search requests.
It is impossible to combine Skip and Take methods and get more than 10,000 hits. That is, a single search cannot retrieve more than 10,000 documents.
Example
The following example uses the Skip and Take methods for pagination.
C#
string searchQuery =
int page =
int pageSize = 15;
client.Search<BlogPost>()
.For(searchQuery)
.Skip((page - 1)*pageSize)
.Take(pageSize)
.GetResult();