Skip to content

Instantly share code, notes, and snippets.

@BillCacy
Created September 17, 2015 22:27
Show Gist options
  • Save BillCacy/4945c7aa67345476accd to your computer and use it in GitHub Desktop.
Save BillCacy/4945c7aa67345476accd to your computer and use it in GitHub Desktop.
SearchResult implementation for use with the search api.
using Sitecore.ContentSearch;
using Sitecore.ContentSearch.SearchTypes;
namespace YOURNAMESPACE.ConcreteModels
{
public class PageBaseSearchResult : SearchResultItem
{
[IndexField("pagecontentfield")]
public string PageContentField{ get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment