Reputation: 11
Can anyone give/point me to 'official references' about component inheritance support in Nhibernate 3.10 ? Already google it, but never find any reference about that.
Thanks
Upvotes: 1
Views: 841
Reputation: 13086
Here there's some doc but I'm not sure if this can help you:
https://ayende.com/blog/3941/nhibernate-mapping-inheritance
Updated
I think it's not possible! look here:
https://stackoverflow.com/q/3739806/735864
Upvotes: 0
Reputation: 17350
NHibernate (and Hibernate for that matter) does not support component inheritance out of the box. You have two relatively unpleasant options:
In the mean time you can vote for this feature to be implemented in Hibernate and maybe some day ported to NHibernate. NHibernate version of this feature request.
Upvotes: 2