Created
September 17, 2015 22:27
-
-
Save BillCacy/4945c7aa67345476accd to your computer and use it in GitHub Desktop.
SearchResult implementation for use with the search api.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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