I\'m using realm to store my data on Android. Awesome framework! Now the only problem I\'m now having is:
I got a array list strings with id\'s of Countries in my da
In latest version of Realm 7+, you can use anyOf to match a field against a list of values.
anyOf
anyOf("name", new String[]{"Jill", "William", "Trillian"})
in older versions, use in instead of anyOf and with kotlin use oneOf instead of in.
in
oneOf
see this issue