相关疑难解决方法(0)

将BSON数组添加到MongoDB中的BsonDocument

如何使用C#驱动程序将BsonArray添加到MongoDB中的BsonDocument?我想要一个像这样的结果

{ 
    author: 'joe',
    title : 'Yet another blog post',
    text : 'Here is the text...',
    tags : [ 'example', 'joe' ],
    comments : [ { author: 'jim', comment: 'I disagree' },
                 { author: 'nancy', comment: 'Good post' }
    ]
} 
Run Code Online (Sandbox Code Playgroud)

c# mongodb mongodb-.net-driver

17
推荐指数
2
解决办法
2万
查看次数

标签 统计

c# ×1

mongodb ×1

mongodb-.net-driver ×1