I have an Azure search query with "&search=item1+item2" (I've also tried && and AND, as well as spaces between operator and items) - but the return items always include those with just "item1" and just "item2". Is there something I am missing? The items are regular strings, not Unicode or special characters.
Asked
Active
Viewed 59 times
0
-
Hi Gina, could you share your index definition, and sample document that you expect to be found, but it is not? – Jacob Jedryszek Apr 24 '18 at 23:37
-
try `&search=item1%2Bitem2` – harishr Apr 25 '18 at 05:55
-
Thanks, hr-tis - that's what I was missing! – reginashGina Apr 25 '18 at 16:51