如何使用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)