I have a long string in JSON format, and I want to convert it into a BSONDocument for insertion into a MongoDB database. How do I do the conversion? I'm using the official C# driver.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

The answer is:

MongoDB.Bson.BsonDocument doc4=MongoDB.Bson.Serialization
 .BsonSerializer.Deserialize<BsonDocument>(genericjson);

where genericjson is a string in json format.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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