Hello,
I'm having a challenge figuring out how to do multi select faceting with Episerver Find, when terms under different facets are selected. I will try to explain what I am doing and what I want to achive.
All the selections under the same facet is grouped together as OR and AND between them.
Adding a Color and a Size terms facet to my query I get the following result.
searchQuery = searchQuery.TermsFacetFor(x => x.ColorValue);
searchQuery = searchQuery.TermsFacetFor(x => x.SizeValue);
=== Color === === Size===
[ ] Blue (40) [ ] Large (70)
[ ] Red (50) [ ] Medium (100)
[ ] Green (60) [ ] Small (50)
[ ] Yellow (70)
I then apply a Red Color Facet using the Filter Extension, which is not what i want, because it excludes all the other colors from the facet result, and does not reflect that the user can OR between them.
=== Color === === Size===
[ ] Blue (0) [ ] Large (15)
[X] Red (50) [ ] Medium (20)
[ ] Green (0) [ ] Small (15)
[ ] Yellow (0)
If I instead use the FilterHit Extension method, I get all the color facet results as I want, but now the size Facet results does not reflect the AND behaviour.
=== Color === === Size===
[ ] Blue (40) [ ] Large (70)
[X] Red (50) [ ] Medium (100)
[ ] Green (60) [ ] Small (50)
[ ] Yellow (70)
What I'm after is that i want the color constraint to only apply to the other facets. So Ideally the user can Select Red => Green > Small, and then the facet result should update as follows:
=== Color === === Size===
[ ] Blue (40) [ ] Large (15)
[X] Red (50) [ ] Medium (20)
[ ] Green (60) [ ] Small (15)
[ ] Yellow (70)
=== Color === === Size===
[ ] Blue (40) [ ] Large (35)
[X] Red (50) [ ] Medium (40)
[X] Green (60) [ ] Small (35)
[ ] Yellow (70)
=== Color === === Size===
[ ] Blue (0) [ ] Large (35)
[X] Red (15) [ ] Medium (40)
[X] Green (20) [X] Small (35)
[ ] Yellow (0)