G
GaryDean
I'm writing both client and WebService for data exchange. Rather than using
XMLTextWriters and writing everything in code I'm intending to use multiple
datatables in a dataset and serialize it out to xml because it's much less
code and much less work. I'm able to easily do this but I have one issue...
it's easy to do this:
<datasetname>
<table1stuff>
<table1stuff>
<table2stuff>
<table2stuff>
<table3stuff>
<table3stuff>
<datasetname>
but how can I have hierarchial groupings like putting table2stuff and
table3stuff under a grouping called <lineitems>. that would be like having
a datatable within a datatable and I don't believe that's possible.
XMLTextWriters and writing everything in code I'm intending to use multiple
datatables in a dataset and serialize it out to xml because it's much less
code and much less work. I'm able to easily do this but I have one issue...
it's easy to do this:
<datasetname>
<table1stuff>
<table1stuff>
<table2stuff>
<table2stuff>
<table3stuff>
<table3stuff>
<datasetname>
but how can I have hierarchial groupings like putting table2stuff and
table3stuff under a grouping called <lineitems>. that would be like having
a datatable within a datatable and I don't believe that's possible.