Quote:
<hibernate-mapping>
<class table="key" name="com.key">
<composite-id name="id" class="com.keyid">
<key-property name="tm_id"/>
<key-property name="pos_id"/>
</composite-id>
<many-to-one name="position" class="com.domain.Position" insert="false" update="false" not-found="ignore" lazy="proxy" cascade="none">
<column name="TM_ID" />
<column name="POS_ID" />
</many-to-one>
</hibernate-mapping>
this loads the complete child object, i can see it firing the select for the all attributes rather than just the id, lazy="proxy" is just ignored ??
What am i doing wrong mate...