Hi,
I am using umbraco 12. I would like to know whether there is a way to search for checked options using partial keywords. An examine query example would be helpful.
This is what I have been using, which does retrieve the results:
var results = qry.Field("tickBoxesOfFruits", "pears").Execute();
but I want to get the results for something like the following:
var results = qry.Field("tickBoxesOfFruits", "pear").Execute();
So the content items with "pears" checked should return but it doesn't. If anyone has any ideas that would help.