F
Frank Uray
Hi all
I got some trouble with creating XML Files.
I have a DataSet with two tables (Calendar and holidays)
and a Relationship (Nested = true) between both tables ("name").
When I now write the XML I get:
<Static>
<Calendar>
<name>AED</name>
<holidays>
<name>AED</name>
<holiday>2008-12-08</holiday>
</holidays>
<holidays>
<name>AED</name>
<holiday>2008-12-10</holiday>
</holidays>
</Calendar>
</Static>
What I need is this:
<Static>
<Calendar>
<name>AED</name>
<holidays>
<holiday>2008-12-08</holiday>
<holiday>2008-12-10</holiday>
</holidays>
</Calendar>
</Static>
Does anybody knows how this can be done ??
Thanks a lot for any comments.
Best regards
Frank
I got some trouble with creating XML Files.
I have a DataSet with two tables (Calendar and holidays)
and a Relationship (Nested = true) between both tables ("name").
When I now write the XML I get:
<Static>
<Calendar>
<name>AED</name>
<holidays>
<name>AED</name>
<holiday>2008-12-08</holiday>
</holidays>
<holidays>
<name>AED</name>
<holiday>2008-12-10</holiday>
</holidays>
</Calendar>
</Static>
What I need is this:
<Static>
<Calendar>
<name>AED</name>
<holidays>
<holiday>2008-12-08</holiday>
<holiday>2008-12-10</holiday>
</holidays>
</Calendar>
</Static>
Does anybody knows how this can be done ??
Thanks a lot for any comments.
Best regards
Frank