2. EL: Iterate over "sub" entities (Hibernate, Facelets)? coderanch.comHello, I have a Game class which represents a (sports) game DB table: @Entity @Table(name = "Games") public class Game implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") private Integer id; @Temporal(value = TemporalType.TIMESTAMP) @Column(name = "scheduled_tipoff") private Date scheduledTipoff; ... @OneToMany(targetEntity = Score.class, mappedBy = "game") private Set |