Try our conversational search powered by Generative AI!

Loading...
Area: Optimizely Search & Navigation
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Recommended reading 

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 = //From query string or similar
int page = //From query string or similar
int pageSize = 15;

client.Search<BlogPost>()
    .For(searchQuery)
    .Skip((page - 1)*pageSize)
    .Take(pageSize)
    .GetResult();
Do you find this information helpful? Please log in to provide feedback.

Last updated: Nov 16, 2015

Recommended reading