Can you tell me if it's any way of using equal method in CriteriaBuilder
in that way :
criteriaBuilder.equal( myClass.get("id") , HERE LIST STRINGS ARGUMETNS INSTEAD OF SINGLE STRING )
?
thank you
Can you tell me if it's any way of using equal method in CriteriaBuilder
in that way :
criteriaBuilder.equal( myClass.get("id") , HERE LIST STRINGS ARGUMETNS INSTEAD OF SINGLE STRING )
?
thank you
Copyright © 2021 Jogjafile Inc.
Did you look at this question. It looks like you want the in() operator not equal()
JPA CriteriaBuilder - How to use "IN" comparison operator