gorm « Criteria « JPA Q&A





1. Grails/GORM "in" criteria    stackoverflow.com

Is it possible to do an "in" criteria using the GORM criteria. I'm looking for the equivalent of the following SQL

select * from Person where age in (20,21,22);
If it was possible ...