tags:

views:

37

answers:

1

I need a way to store data inside xml files and write to differant parts of the file, as well as add elements and structure to the xml document.

I need full control over the file names and xml documents, and it would be much easier if I could use some kind of SQL layer to read and write from the xml.

Just due to project constraints I am tied into using XML, but if possible would like a trust and tested open source solution for this.

Or should I be using out of box .net functionality for this?

+2  A: 

you should be using out of box .net functionality.

the XML namespaces and Linq-to-XML will do this for you.

Stephen Wrighton
Also forgot to mention I am using .net v2 for this scenario.
JL
.net 2 still has the XML Namespaces. It's just slightly harder without Linq-to-XML
Stephen Wrighton