I have the following realm request, but from reading the documentation, I see no way to make an IN request.
I need to find the identifier in a string or array containing that identifier. Is it possible?
Code example:
Realm realmThread = Realm.getInstance(visnetawrap.appModel); RealmResults<PropertyObject> propResults = realmThread.where(PropertyObject.class).contains("propertyID", "(5,7,10)").findAll();
android realm
Joe ginley
source share