sql >> Database >  >> NoSQL >> MongoDB

BSON-array toevoegen aan BsonDocument in MongoDB

U kunt het bovenstaande document in C# maken met de volgende verklaring:

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

Je kunt testen of je het juiste resultaat hebt behaald met:

var json = document.ToJson();


  1. MongoDB verwijdert zeer langzaam

  2. Waar is AccountKey voor CosmosDB in Azure Portal

  3. Hoe sorteer ik een collectie op datum in MongoDB?

  4. hoe mongod --dbpath in te stellen