I am trying to write a query for the search by type search bar. I want to make a "Good" query and return any views that have LocalName ("name" LIKE% @AND localeIdentifier ==% @).
If I am only looking for names (so ignoring the localeIdentifier), I could do something like this:
ANY localized.name LIKE %@
What I want is more like
ANY localized.(name LIKE %@ AND localeIdentifier == %@)
To summarize, the search for "Good", any element in many ways "localized" must match both the name and the language identifiers.
Any ideas for the correct syntax for this?
source
share