has experience in importing and exporting large collections (from the database in this case) with .net.
Using database export alone is not possible, since several database backends are supported, and I need this for my independent export / import on the platform.
The problem is that the XmlSerializer or DataContractSerializer classes fully read the data for deserialization, but since the data sets can be extremely large, this is not possible. Are there any solutions that rely on the existing serialization infrastructure but support iterative file reading?
thanks
Fionn source share