web-dev-qa-db-ja.com

MongoDBのBsonDocumentにBSON配列を追加する

C#ドライバーを使用してMongoDBのBsonDocumentにBsonArrayを追加するにはどうすればよいですか?このような結果が欲しい

{ 
    author: 'joe',
    title : 'Yet another blog post',
    text : 'Here is the text...',
    tags : [ 'example', 'joe' ],
    comments : [ { author: 'jim', comment: 'I disagree' },
                 { author: 'nancy', comment: 'Good post' }
    ]
} 
19
Ravi

次のステートメントを使用して、C#で上記のドキュメントを作成できます。

var document = new BsonDocument {
    { "author", "joe" },
    { "title", "yet another blog post" },
    { "text", "here is the text..." },
    { "tags", new BsonArray { "example", "joe" } },
    { "comments", new BsonArray {
        new BsonDocument { { "author", "jim" }, { "comment", "I disagree" } },
        new BsonDocument { { "author", "nancy" }, { "comment", "Good post" } }
    }}
};

次の方法で書き込み結果が得られたかどうかをテストできます。

var json = document.ToJson();
21
Robert Stam

次のように、BsonDocumentがすでに存在した後に配列を追加することもできます。

BsonDocument  doc = new BsonDocument {
    { "author", "joe" },
        { "title", "yet another blog post" },
     { "text", "here is the text..." }
};

BsonArray  array1 = new BsonArray {
        "example", "joe"
    };


BsonArray  array2 = new BsonArray {
        new BsonDocument { { "author", "jim" }, { "comment", "I disagree" } },
        new BsonDocument { { "author", "nancy" }, { "comment", "Good post" } }
    };


doc.Add("tags", array1);
doc.Add("comments", array2);
4
Inbal Abraham