sql >> Databasteknik >  >> NoSQL >> MongoDB

Lägger till BSON-array till BsonDocument i MongoDB

Du kan skapa ovanstående dokument i C# med följande uttalande:

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

Du kan testa om du gav rätt resultat med:

var json = document.ToJson();


  1. Få $elemMatch (projektion) att returnera alla objekt som matchar kriterierna

  2. Redis Sentinels med TLS

  3. Ohanterat löftesavslag:Fel:URL felaktig, kan inte tolkas

  4. Returnera dokument med Max underdokument