将 JSOn 字符串转换为 Mongo 文档时出现问题

发布于 2024-12-01 09:40:28 字数 472 浏览 0 评论 0原文

我正在尝试将 JSOn 字符串转换为 Mongo 文档,但在线上没有太多可用的帮助。

我发现唯一有用的是:

1: 2:

MongoDB.Bson.BsonDocument doc4=MongoDB.Bson.Serialization .BsonSerializer.Deserialize(genericjson);

切换突出显示在新窗口中打开选择全部,

如帖子@

字符串转换为 MongoDB BsonDocument

将 中所述在数据库中创建文档,但它不是 C# 中的模拟。当我单击节点时,它们不会向我显示内部数据。这就是 Mongo 在转换损坏文件时所做的事情。

还有其他方法可以解决吗?

I am trying to convert a JSOn string into a Mongo document and there is not much help availabel online.

the only helpful thing that I found was:

1:
2:

MongoDB.Bson.BsonDocument doc4=MongoDB.Bson.Serialization
.BsonSerializer.Deserialize(genericjson);

Toggle HighlightingOpen in New WindowSelect All

as described in the post @

Convert string into MongoDB BsonDocument

It creates the document in the databse but it's not the simulation of what it is here in C#. When I click on the nodes they don't show me the data inside. this is what Mongo does when the conversion has corrupted the file.

is there any other way to solve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁的新欢旧爱 2024-12-08 09:40:28

尝试 BsonDocument.Parse()方法,例如

var bsonDoc = BsonDocument.Parse(jsonString);

Try the BsonDocument.Parse() method, e.g.

var bsonDoc = BsonDocument.Parse(jsonString);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文