XML : Custom DataTable/DataRow to XML serialization

There are things that I dont like in DataTable.WriteXML() and .ReadXML(). These are:

  • Not possible to configure number of rows or columns to load/save. Need it when processing huge data amounts
  • Not even possible to get rid of the XML element that means dataset name (DocumentElement by default)
  • Want to make custom processing on read/write nodes

Is there any good serializer for DataRows and DataTables? I can write my own but it seems weird that they still don;t exist (i tried to find).
Thanks!

No comments:

Post a Comment