I am looking to map two tables that have no foreign key relationship as a one-to-many mapping. The relationship itself is computed using Native SQL. I am using the <loader query-ref> field in my set. However hibernate is yelling about the lack of a key in the set mapping. I used this example from hibernate documentation which also has no key.
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querysql.html#querysql-load
<set name="employments" inverse="true">
<key/>
<one-to-many class="Employment"/>
<loader query-ref="employments"/>
</set>
<sql-query name="employments">
<load-collection alias="emp" role="Person.employments"/>
SELECT {emp.*}
FROM EMPLOYMENT emp
WHERE EMPLOYER = :id
ORDER BY STARTDATE ASC, EMPLOYEE ASC
</sql-query>
Please advise