Hello,
I' m facing a following problem: my business logic should historize an object graph in separated tables so I searched on the hibernate site and found this entry
http://forum.hibernate.org/viewtopic.php?t=969725
interesting:
<class name="Person" table="PERSON"> ....
<class name="Person" entity-name="HistoricalPerson" table="PERSON_HIST"> ....
However the suggested solution use entity-name enhancements witch would be available in the 2.0 nhibernate version.
How could I copy an object graph from my tables to the Hist_Tables in the same database?
Any hints are much appreciated!