1. Hibernate default joining for nullable many-to-one stackoverflow.comI have a hibernate mapping like this in a ProductDfn class
|
2. Want Hibernate to use outer join as default in HQL forum.hibernate.orgHi, I am new bie at hibernate. I need someone's help. What I need hibernate to use left outer join in it's query as default. Suppose, I have two table 1) Employee 2) Task with one to many relationship. Now If I say findbyquery("select count(*) from Task t order by t.Employee.Name") Hibernate generate following query with inner join: select count(*) as ... |