This is probably a basic question and I fear I'm going to make it sound much more complicated than it is but here goes:
Using JPA w/ all the latest stable Hibernate versions (i.e. 3.2), I have 3 entities as follows:
Code:
@Entity
public class Team {
@Id
private Long id;
@ManyToOne
@JoinColumn(name="division_id")
private Division division;
...
}
@Entity
public class Division {
@Id
private Long id;
...
}
@Entity
public class TeamSeasonRecord {
@Id
private Key id;
...
@Embeddable
public static final class Key {
@ManyToOne
@JoinColumn(name="team_id")
private Team team;
private Integer season;
...
}
}
If I want to get all the TeamSeasonRecords for 2008 - the following criteria does the trick:
Code:
Criteria criteria = session.createCriteria(TeamSeasonRecord.class);
criteria.add(Restrictions.eq("id.season", 2008));
But I also want to get the TeamSeasonRecords for Teams in a certain division so I try this:
Code:
criteria.add(Restrictions.eq("id.season", 2008));
criteria.add(Restrictions.eq("id.team.division.id", new Long(1)));
this generates an error:
Code:
"could not resolve property: id.team.division.id"
I can easily write the SQL for this using an inner join as follows:
Code:
select * from TeamSeasonRecord r inner join Team t on r.team_id = t.team.id where r.season = 2008 and t.division_id = 1
But I'm stumped trying to get Hibernate to do the same :(
Can someone straighten me out here?