Skip to content

Instantly share code, notes, and snippets.

@soen
Last active May 12, 2017 13:43
Show Gist options
  • Save soen/9c91c7b44bf1a9dfa39c18ce1ab23c27 to your computer and use it in GitHub Desktop.
Save soen/9c91c7b44bf1a9dfa39c18ce1ab23c27 to your computer and use it in GitHub Desktop.
ISearchIndex index = ContentSearchManager.GetIndex("sitecore_master_index")
using (IProviderSearchContext context = index.CreateSearchContext())
{
var results = context.GetQueryable<SearchResultItem>()
.Where(x => x.Content.Contains("Is that you, John Wayne? Is this me?"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment