AD
Administrator
Syncfusion Team
September 10, 2003 07:23 PM UTC
Filtering and sorting the data in a Datatable does not change the DataTable. Instead, some DataView object (usually the DataTable.DefaultView) is modified to reflect the filtering and sorting. The DataTable remains unchanged as the result of a filter and sort. So, I do not know of a way to 'just save' the DataTable in any to that would actually save the table as reflected by a DataView. The DataSet.WriteXML will not persist any dataview information.
So, I think you would have to explicitly write the XML file yourself.
SW
Sean Wilkins
September 11, 2003 11:08 AM UTC
I thought not, but I needed a confirmation. Thanks Clay!