Spring-Data-LDAP alternative for "in" query

99 views Asked by At

Is there any alternative for IN queries in Spring-Data-LDAP? I'm facing a problem in order to retrieve users from an email list:

The Spring-Data query is something like the following:

this.ldapUserRepository.findByEmailIn(emailList); 

where emailList is a List<String> and the error is the following:

IN (1): [IsIn, In] queries are not supported for LDAP repositories
0

There are 0 answers