sql >> データベース >  >> NoSQL >> MongoDB

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

    次のステートメントを使用して、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();
    


    1. データベースとしてのNoSQL(MongoDB)とLucene(またはSolr)

    2. mongoDBを検索エンジンとして使用する方法は?

    3. Android Studio:MongoJavaDriverを使用してMongoDBサーバーに接続する

    4. マングースクエリ:配列内のIDでオブジェクトを検索します