I'm using the official MongoDb C# driver.

My scenario: I store objects into MongoDb. All objects are instances of classes that inherit from the same root class. At design time I do not know all classes that can be stored (i.e they can be plugged in) - so I need some way to tell the serializer/driver how to map the classes to documents (descriminators in the document).

Anyone got any ideas?

link|improve this question
feedback

3 Answers

up vote 4 down vote accepted

The official C# driver will write a "_t" discriminator value whenever the actual type of an object is different than the nominal type. So for example:

MyRootClass obj = new MyDerivedClass();
collection.Insert(obj);

The Insert statement could also have been written:

collection.Insert<MyRootClass>(obj);

but it's easier to let the compiler infer the type parameter.

Since the actual type of obj is different than the nominal type the "_t" discriminator will be written.

When reading back the object you will have to ensure that MyDerivedClass has been properly registered:

BsonClassMap.RegisterClassMap<MyDerivedClass>();

or the serializer won't recognize the discriminator (this may seem like a restriction, but it's only logical that the serializer can only work with types it knows about).

You mentioned that you don't know the classes at compile time, so the above registration code must be invoked dynamically. One way to do it is:

Type myDerivedClass; // your plugged-in class
var registerClassMapDefinition = typeof(BsonClassMap).GetMethod("RegisterClassMap", new Type[0]);
var registerClassMapInfo = registerClassMapDefinition.MakeGenericMethod(myDerivedClass);
registerClassMapInfo.Invoke(null, new object[0]);

Technically, the serialization is not using reflection; it is metadata driven. Reflection is used once to construct the class map, but after that the class map is used directly without reflection, and the overhead is rather low.

link|improve this answer
Thanx a lot. Exactly what I was looking for. – Jan Ohlson Jun 8 '11 at 6:03
feedback

Take a look into driver serialization documentation here.

link|improve this answer
Hmm.. I don't see how to do that without reflection with unknown types. – mnemosyn Jun 7 '11 at 14:54
feedback

It may be helpful to look at the source code of libraries like Samus or NoRM, as well:

Samus

NoRM

link|improve this answer
Question regarding official c# driver... – Andrew Orsich Jun 7 '11 at 14:24
@Andrew yes, but the source code could be useful for ideas if you're using the custom serialization / mapping approach which is more efficient – Martin Jun 7 '11 at 14:43
feedback

Your Answer

 
or
required, but never shown

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