Hibernate version 3:
Hi,
i have a question about association, in my case many-to-one here a bit code.
Code:
<many-to-one name="modevo" class="vo.as400.ModeVO" lazy="false" cascade="save-update" update="false" insert="false">
<column name="STAGPF"/>
<column name="MODEPF"/>
</many-to-one>
But my association it's not obbligatory, or rather not always exists, but if hibernate don't found this association throws an exception "no row ...".
in few words, as it is possible to say to Hinernate, if this associations not exits don't throws a exception
Can you help me.
Devis