Creating XML using dataSet.WriteXml. How to change the node name



is there any way to change the Dataset default Node Name. I am creating a XML from DataTable. This is my code



DataSet dataSet = new DataSet("Products");
dataSet.Tables.Add(tbl);
dataSet.WriteXml(@"D:\Temp\test.xml");


This is the xml i am getting



<Products>
<Table1>
<product_name>McWilliams Hanwood Chardonnay 750mL</product_name>
<id>121385</id>
<price>7.60</price>
</Table1>
<Table1>
...
</Table1>
<Table1>
...
</Table1>
</Products>


Is there a way to change the Table1 to Product like



<Products>
<Product>
....
</Product>
<Product>
....
</Product>
</Products>


Thanks in advance


No comments:

Post a Comment