开发者

Having a Pretty-Printed XML file from the WriteXml of a Dataset in VB.NET

I'm trying to use Dataset.WriteXml() function in VB.Net to generate an XML file with Pretty-Print Layout (I think this is how it's named) like the example below (Listing 1):

<MainRoot>
   <Table1>
      <Col1>Value1</Col1>
      <Col2>Value2</Col2>
      <Col3></Col3>
      <Col4>Value4</Col4>
   </Table1>
   <Table2>
      <Col1></Col1>
      <Col2></Col2>
      <Col3></Col3>
      <Col4>Value4</Col4>
   </Table2>
</MainRoot>

Now, the problem is that I'm not getting the file with this format, and it's formatted l开发者_开发问答ike this (Listing 2):

<MainRoot>
   <Table1
      Col1="Value1"
      Col2="Value2"
      Col3=""
      Col4="Value4" />
   <Table2
      Col1=""
      Col2=""
      Col3=""
      Col4="Value4" />
</MainRoot>

I tried to use XMLWriterSettings and played around with the properties there with no use.....

My Question: Is there anyway to format the XML stream that is generated from the dataset to be formatted as in Listing 1 I shown above???


Looks like you solved this problem, but for others, you can configure this kind of thing by changing the ColumnMapping property on your columns:

foreach (DataColumn dc in dt.Columns)
{
  dc.ColumnMapping = MappingType.Attribute;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜