I have an ExpandoObject with an arbitrary number of properties. I want to persist those properties to a MongoDB database as a BsonDocument. I try to do so with the following code:

    private BsonDocument GetPlayerDocument(IPlayer player)
    {
        var ret = new BsonDocument();

        ret.Add("FirstName", player.FirstName).
            Add("LastName", player.LastName).
            Add("Team", player.Team).
            Add("Positions", new BsonArray(player.Positions));

        foreach (var stat in (IDictionary<String, Object>)player.Stats)
        {
            ret.Add(stat.Key, stat.Value.ToBson());
        }

        return ret;
    }

However, on calling the extension method ToBson() on object, I receive the following exception: WriteInt32 cannot be called when State is: Initial.

The only WrtieInt32 I know is a static method of the Marshall class. Am I approaching this wrong?

link|improve this question

Which C# MongoDB Driver are you using? – Brendan W. McAdams Feb 22 '11 at 2:09
@Brendan, 0.11.0.4042 – Jekke Feb 22 '11 at 2:16
Can you post complete example, something like test case? So i'll check it. Thanks. – Andrew Orsich Feb 22 '11 at 8:44
@Bugai13, the code doesn't exist in this form anymore, but here's the process: (1) create an ExpandoObject (2) Attach arbitrary properties of type Single, Int32, and String (3) Try to read them back and call Object.ToBson() on them. – Jekke Feb 22 '11 at 20:23
feedback

4 Answers

This is quite a complex process since you need to store information in MongoDB about the types of each field. I have an implementation that does this using .NET interfaces.

You can read about it here.

link|improve this answer
feedback

May be it will be better to use Array of dynamic objects. some thing like this:

someObject
{
      dynamicArray:
      {
           item : { Key: "Name", Value: "Jekke", Type:String }
           item : { Key: "Age", Value: "40", Type:int }
           item : { Key: "City", Value: "New York", Type:String }
      }
}
link|improve this answer
1  
Galimy, how to index for this dynamicArray only City in place that all the array(C# off.)? – user325558 Feb 22 '11 at 12:30
as i know mongo doesn't allow to index by condition – Andrei Andrushkevich Feb 22 '11 at 12:58
This isn't a workable solution with my current project. I don't know what fields I'll have at runtime and they don't store type information with themselves. – Jekke Feb 22 '11 at 20:21
feedback

Also you can try to use

BsonValue.Create(stat.Value)
link|improve this answer
feedback

It's very simple. ExpandoObject inherits IDictionary which works with BsonDocument out of the box.

dynamic data = new ExpandoObject();
var doc = new BsonDocument(data);
collection.Save(doc);
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.