I have read that this mapping is not possible in NHibernate 3.3:
<class name="Digital" table="DIGITALS">
<composite-id>
<key-many-to-one name="Person" class="Person" column="PERSONID" />
<key-property name="Id" column="ID">
**<generator class="increment"/>**
<key-property/>
</composite-id>
<property name="Nombre" column="NOMBRE" />
Basically I need a composite-id's property to be calculated automatically by NH.
Maybe exists a technique to get something similar?
Thanks in advance.