MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Hinzufügen eines BSON-Arrays zu BsonDocument in MongoDB

Sie können das obige Dokument in C# mit der folgenden Anweisung erstellen:

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" } }
    }}
};

Ob Sie das richtige Ergebnis erhalten haben, können Sie testen mit:

var json = document.ToJson();