Hello team Manticore,
How to search from list of string ?
I have list of product’s categories name.
Example, I have one product as mentioned in above questions and it has two categories.
var categoryList = new List<string>{ "Computer", "Desktop" }
Now, I want to add one fields in my index (or table) for “CategoryList”
So what should be data type for it ? and how to search from that list ?
I checked there is data type “Multi-value integer (MVA)” but I think it is for lists of 32-bit unsigned integers.
But I want to list of strings, so which data type I have to use ?
Can you please suggest and give me an example.
Thank you.