Lets say we have this JPA-annotated class, with a property of type List. This code is currently working fine.
@Entity public class Family { ... @Collecti
List found = getHibernateTemplate().find( "from Family as f join f.elements as e where e = ?", new Object[]{"yyy"});