I've googled a bit but found no decent solutions...
What i would like to achieve, source comes firts :)
List<MyStuff> result =
session.createCriteria(MyStuff.class)
.add(Restrictions.in("name", templates)).list();
templates is a Collection, thing is, I would like to get all myStuffs, that have name column matching-CASE-INSENSITIVELY to any of templates.
Possible without looping and iliking for every element of templates?