Hi All,
I have a problem which I think is sure easy enough that it would have been
solved already. I am looking for some pointers here -
I have an XML document like this:
<root>
<child>
<element1>value 1</element1>
<element2>value 2</element2>
</child>
<child>
<element1>value 1</element1>
<element2>value 2</element2>
</child>
....
....
</root>
The <childsection like the one above, might repeat for hundreds of
thousands of times. Since I am going to process this XML later for some
other thing, I want to break it in smaller chunks, say XML documents of 5000
child records each.
Is there a reasonable way to achieve this? I am using C# .Net 2.0 and Visual
Studio 2005.
Thanks in advance,
Abhishek
I have a problem which I think is sure easy enough that it would have been
solved already. I am looking for some pointers here -
I have an XML document like this:
<root>
<child>
<element1>value 1</element1>
<element2>value 2</element2>
</child>
<child>
<element1>value 1</element1>
<element2>value 2</element2>
</child>
....
....
</root>
The <childsection like the one above, might repeat for hundreds of
thousands of times. Since I am going to process this XML later for some
other thing, I want to break it in smaller chunks, say XML documents of 5000
child records each.
Is there a reasonable way to achieve this? I am using C# .Net 2.0 and Visual
Studio 2005.
Thanks in advance,
Abhishek
Comment