将 JSOn 字符串转换为 Mongo 文档时出现问题
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 BsonDocument.Parse()方法,例如
Try the BsonDocument.Parse() method, e.g.