In this particular case the issue was the when building the search query I was using filter instead of where.
var searchResults = searchContext.GetQueryable<SearchModel>().Where(searchPredicate);would be correct instead of:
var searchResults = searchContext.GetQueryable<SearchModel>().Filter(searchPredicate);
No comments:
Post a Comment