Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 27, 2016 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdhollow/b7ccb40d324269cc21be to your computer and use it in GitHub Desktop.
Save kdhollow/b7ccb40d324269cc21be to your computer and use it in GitHub Desktop.
Setting up top and search text
// By default, we want to get back no results, but we want to get facet and count information for the entire result set
int? top = DefaultTopCount;
var searchText = model.SearchText;
if (string.IsNullOrEmpty(searchText) && string.IsNullOrEmpty(model.Filter))
{
searchText = "*";
top = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment