Formating the xml-output from a DataSet
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
Helo :~ I know that I have done this before, controling howe the output-xml is formated. The default i:
<NewDataSet>
<table>
<col1>val</col1>
<col2>val</col2>
</table>
<table>
<col1>val</col1>
<col2>val</col2>
</table>
<NewDataSet>But I want it to be:
<NewDataSet>
<table col1="val" col2="val">
<table col1="val" col2="val">
</NewDataSet>What is the property to set ????