SerializationException when serializing lots of objects in .NET

后端 未结 9 804
深忆病人
深忆病人 2020-12-10 01:41

I\'m running into problems serializing lots of objects in .NET. The object graph is pretty big with some of the new data sets being used, so I\'m getting:

Sy         


        
9条回答
  •  时光说笑
    2020-12-10 02:28

    Depending on the structure of the data, maybe you can serialize / deserialize subgraphs of your large object graph? If the data could be somehow partitioned, you could get away with it, creating only small duplication of serialized data.

提交回复
热议问题