将 MongoDB BsonDocument 转换为字符串
如何将整个 MongoDB BsonDocument 转换为字符串?
(我使用的是官方C#驱动程序)
How do a convert an entire MongoDB BsonDocument into a string?
(I'm using the official C# driver)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 < 将 BsonDocument 转换为 JSON 格式的字符串代码>MongoDB.Bson.BsonExtensionMethods.ToJson。
You can convert BsonDocument into a JSON formatted string using
MongoDB.Bson.BsonExtensionMethods.ToJson
.使用的代码如下所示:
Code used shown below: