MongoDB对象序列化、堆栈溢出异常

发布于 2025-01-07 20:07:38 字数 533 浏览 0 评论 0原文

当我尝试将对象序列化为 bson、json、bsondocument 时,出现堆栈溢出异常。该类具有对其外部类的引用,外部类对其内部类的引用。有什么方法可以解决这个问题?对象图在对象链上和下有很多引用?

        BsonClassMap.RegisterClassMap<Document>();
        BsonClassMap.RegisterClassMap<Section>();

        Document _document = GetDocument();

        BsonDocument _bsondocument1 = _document.ToBsonDocument();

        string _hello4 = _documents[0].ToJson();

Section 类引用了 Document,并且 Document 具有 Sections

感谢您的帮助。

I'm getting a stack overflow exception when I try to serialize an object to bson, json, bsondocument. The class has references to its outer class and outer class references to its inner class. What is the way to fix this issue? The object graph has a lot of references up and down the object chain?

        BsonClassMap.RegisterClassMap<Document>();
        BsonClassMap.RegisterClassMap<Section>();

        Document _document = GetDocument();

        BsonDocument _bsondocument1 = _document.ToBsonDocument();

        string _hello4 = _documents[0].ToJson();

Class Section has reference to Document and Document has Sections.

Thanks for your help.

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

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

发布评论

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

评论(1

残月升风 2025-01-14 20:07:38

堆栈溢出异常是预期的行为,因为对象图中存在循环引用。重构您的设计以避免圆形路径。我不知道有任何其他方法可以解决它。

The stack overflow exception is the expected behavior as there is a circular reference in the object graph. Refactor your design to avoid a circular path. I am not aware of any other way to fix it.

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