Hibernate version:
1.2.0.3001
I am using this code to generate my mappings into mssql express 2005:
<property name="hibernate.hbm2ddl.auto">update</property>
<mapping resource="table1.hbm.xml" assembly="class"/>
<mapping resource="table2.hbm.xml" assembly="class"/>
(this code is into hibernate.cfg.xml).
But i only want to update table1 , i don´t want to update table2. My table1 have reference to table2, that´s why i have problems with this object to update it, nhibernate see me that the object table2 is created yet.
:P
|