Search with partial text Tiggzi DB
I am creating an app that is similar to the one recently posted on your blog. My question is that I need to search with partial text. I have a column in the db that is named "INDUSTRY" and it contains string values such as
Agriculture
Construction of buildings
Steel frame construction
Farming
I want to search for the word construction and have it return the two records that have construction in them.
I have tried using {"INDUSTRY": {"$in": ["Construction"]}} in my where clause but it does not work.