Skip to content

Instantly share code, notes, and snippets.

@soen
Last active November 28, 2016 20:47
Show Gist options
  • Save soen/01e707eade0c8316437bc2bcc53b90a0 to your computer and use it in GitHub Desktop.
Save soen/01e707eade0c8316437bc2bcc53b90a0 to your computer and use it in GitHub Desktop.
using (var context = ContentSearchManager.GetIndex("sitecore_master_index").CreateSearchContext())
{
// Grab the first 20 search results
var results = context.GetQueryable<SearchResultItem>()
.Where(...)
.Skip(0).Take(20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment