MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Aggiunta dell'array BSON a BsonDocument in MongoDB

Puoi creare il documento precedente in C# con la seguente istruzione:

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

Puoi verificare se hai prodotto il risultato corretto con:

var json = document.ToJson();