MongoDB对象序列化、堆栈溢出异常
当我尝试将对象序列化为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
堆栈溢出异常是预期的行为,因为对象图中存在循环引用。重构您的设计以避免圆形路径。我不知道有任何其他方法可以解决它。
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.