Добавление массива BSON в BsonDocument в MongoDB

Как мне добавить BsonArray в BsonDocument в MongoDB используя драйвер C #? Я хочу получить что-то вроде этого

{ 
    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' }
    ]
} 
17
задан Peter Mortensen 31 July 2011 в 20:37
поделиться