MongoDB is schema-less. So, I can technically store any number of different types within one collection. We currently have the need to store multiple objects that inherit from the same base class in one collection. Is this possible using NoRM?
For example, we have a Person collection, but this person collection contains Fathers that inherit from Person and Mothers that inherit from Person, etc. We need their Father-specific and Mother-specific properties to be stored and then when they are pulled out of Mongo, we want the appropriate object created. Is such a thing possible with NoRM?