C# - When using: DataSet.WriteXml(filePath);
The dataset name will be written as the root element. How do you suppress this?
Note: I have a schema tied to this DataSet, the XML data reads into the schema correctly.
Current Output:
<DataSet> //dataset name prints -- REMOVE
<HAPPY>
<HAPPY2>BLAH</HAPPY2>
</HAPPY>
</DataSet> //dataset name prints -- REMOVE
Desired Output:
<HAPPY>
<HAPPY2>BLAH</HAPPY2>
</HAPPY>