¿Cómo puedo agregar BsonArray a BsonDocument en MongoDB usando un controlador C#? Quiero un resultado algo como estoAgregar BSON matriz a BsonDocument en MongoDB
{
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' }
]
}
¿Puedes aclarar tu pregunta? ¿Que estás tratando de hacer? ¿Cree el documento descrito arriba a través de BsonDocument? ¿O estás tratando de agregar comentarios al autor existente? Mb su código de programa ... –