Skip to content

Instantly share code, notes, and snippets.

@mattgartman
Last active August 29, 2015 14:06
Show Gist options
  • Save mattgartman/b5b874cd2e4e33c707c5 to your computer and use it in GitHub Desktop.
Save mattgartman/b5b874cd2e4e33c707c5 to your computer and use it in GitHub Desktop.
SolrDateBoost: Search Model
public class SearchResultItemModel : Sitecore.ContentSearch.SearchTypes.SearchResultItem
{
[IndexField("_val_")]
public string _val_ { get; set; }
//custom publication date field defined in the Sitecore data template
[IndexField("PublicationDate")]
public DateTime PublicationDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment