Realm java nested query on same ArrayObject
问题 Current code: mRealm.where(AdditionalData.class) .contains("checklistParticipants.email", a@a.com, Case.INSENSITIVE) .equalTo("checklistParticipants.type", 0) .findAll(); which returns me result of similar to ANY record. I want to check in nested query, only return record if and if both condition fulfilled. likewise in nested query, record email must be a@a.com and type=0 i tried below approach but ended up in same result. mRealm.where(AdditionalData.class) .contains("checklistParticipants