Skip to content

Instantly share code, notes, and snippets.

@soen
Last active August 20, 2016 16:17
Show Gist options
  • Save soen/756d5e1eb8e0192d2d1671553eb952a1 to your computer and use it in GitHub Desktop.
Save soen/756d5e1eb8e0192d2d1671553eb952a1 to your computer and use it in GitHub Desktop.
// A custom implementation of the SearchResultItem
public class MySearchResultItem : SearchResultItem
{
// I've added a new property, that will be mapped to the Solr field named 'mytextfield'
[IndexField("mytextfield")]
public string MyTextField { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment