Mixing table per subclass and table per class inheritance policies
Hi, I'm having the current situation:
interface IMapping
interface IBusinessMessageMapping:IMapping
interface INotificationMapping:IMapping
interface ISomeBusinessMessageMapping:IBusinessMessageMapping
interface IOtherBusinessMessageMapping:IBusinessMessageMapping
We would like to have IBusinessMessageMapping and INotificationMapping as table per subclass from IMapping and ISomeBusiness and IOtherBusiness as table per class from IBusinessMapping. How can we achieve this with FNH 1.1.0.685?
2 Posted by Bogdan Ungureanu on 07 Jul, 2010 03:58 PM
Quoting
"However, Hibernate does not support mixing , and <joined-subclass> and <union-subclass> mappings under
the same root element". And I think it's closed.