Hi all
I try to get part of a collection over hql. In the Hibernate tutorial it is sugested to use the criterias to get the data from a collection. As we are using JBoss Seam framework we rely on EJB.
@Entity
// ...
class SoftwareInventoryObject {
// other code
String name;
@OneToMany
List<SoftwareInventoryObjectPart> parts;
// Getter & Setter
}
@Entity
class SoftwareInventoryObjectPart {
// other code
String name;
// other code
}