Документ BSON (MongoDB) в JSON в Visual Studio 2019

#c# #json #mongodb #visual-studio #bson

#c# #json #mongodb #visual-studio #bson

Вопрос:

 var client = new MongoClient("mongodb:....."); var database = client.GetDatabase("fuel_try");  var collection = database.GetCollectionlt;BsonDocumentgt;("fuel");  Console.WriteLine("Data from MongoDB Database: "); collection.Find(new BsonDocument()).ForEachAsync(X =gt; Console.WriteLine(X));   //BsonDocument myBsonDocument = //code that loads a BSON document fueldata.ToJson(new JsonWriterSettings { OutputMode = JsonOutputMode.RelaxedExtendedJson });  Console.Read();  

Это мой код, и я пытаюсь понять, как я могу преобразовать Bson в Json, чтобы его можно было прочитать на моем живом графике в Visual Studio.