I have this object graph, I want to map:
- abstract Account (username, password, ...)
- abstract Customer (shoppingcart, orders, roles)
- IndividualCustomer (user data)
- CorporateCustomer (different user data, company data)
- Administrator (adminroles)
- abstract Customer (shoppingcart, orders, roles)
How can this be mapped against one table? (I know how to do this with an entity hierarchy that is only 1 level deep, just like in the docs, but this is different).
Anybody has an idea? I asked the same in http://groups.google.com/group/nhusers/browse_frm/thread/7a85cba0048c18d8?hl=en, but so far have not received a useful answer.