vote up 0 vote down star

How would I go about mapping three classes to one table with fluent NHibernate. A "Type" column should indicate which class should be mapped. Is it even possble?

  • Kristoffer
flag

57% accept rate

2 Answers

vote up 2 vote down check

It's certainly possible, assuming that your classes extend a common base class. This is called table-per-class strategy and instructions on how to map it are in the documentation.

link|flag
Thanks! The're is an example of it at the end of the documentation. The properties are not virtual in the documentation, but they must be. – Kristoffer Oct 22 at 19:46
vote up 0 vote down

Are you in a situation where your data could be normalized? What you're trying to do seems like a dead giveaway that this is the actual problem.

link|flag
Well, I'm basically just curious. I was thinking about how I could denormalize the database (for increased performance) without touching the object model. – Kristoffer Oct 22 at 19:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.