1. Loading an Associated entity (based on fk) forum.hibernate.org |
2. Does one-to-one unique FK association enable lazy load? forum.hibernate.org |
3. Hibernate unable to lazy load when FK joins to a component? forum.hibernate.orgAuthor Message campers Post subject: Hibernate unable to lazy load when FK joins to a component? Posted: Wed Jun 01, 2005 10:30 pm Newbie Joined: Tue Jul 20, 2004 8:52 pm Posts: 6 My problem is that I have a many-to-one association that is has a multi-column foreign key that is mapped to a component in the joining class. ... |
4. loading a collection via sql-query without a FK to the table forum.hibernate.orgI need to load an Observable object and populate the patientRules Set with a named query that returns a list of PatientRule objects... The Observable table and PatientRule table have no direct database relationship, and therefore no FK relationship. Observable.java long observableSeq String name String displayText Set patientRules PatientRule.java long patRuleId String gender int ageLow int ageHigh here is a snippet ... |