7.3. Serialization, Marshaling, and DataSet

Rather than use a binary format by default, as in ADO classic, the DataSet default is XML serialization and marshaling. This means that you can populate DataSet from non-Microsoft data sources, and the data is consumable from non-Microsoft platforms. Because DataSet marshals as an XML document, it is natively supported without transformation by Web Services.

The .NET platform includes two libraries that serialize and deserialize classes in XML format:

  • System.Runtime.Serialization is used for marshaling in .NET implementations.

  • System.Xml.Serialization is used in Web Services to support unlike implementations.

DataSet is compatible with both of them.

System.Runtime.Serialization serializes .NET classes ...

Get Essential ADO.NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.