November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Think you need to change the:
.Filter(y => y.SearchCategories.Match(
"5"
))
As the SearchCategories are a list over categories you can't use match.
In my solution I created my own filter and then added that to the query.
var catalogBuilder = SearchClient.Instance.BuildFilter<PageData>(); foreach (int category in input.Categories) catalogBuilder = catalogBuilder.Or(x => x.Category.Match(category)); query = query.Filter(catalogBuilder)
Hi
I'm trying to use unified search to filter the results based on category. I've got so far
And the SeachCategories method is implemented on ContentBasePage as
Bu tfind doesn't return any results even though I know that there is a page in category "5" (filter hardcoded for demo purposes). Can anyone spot what is going on. Also - I would like to peek into Searchcategories in the search results (in VS debug mode) to see what is there - but the property seems to be unavailable.
Really appreciate any help
Thanks