I need to update some xml where the structure is unknown, and I'm not quite sure where to begin. I have a field with some xml in a database table, and this can be different xml for each record. The associated schema is also stored in the database.
I'm creating a web service where the updates are being sent as an XElement. I need to find the correct nodes and update them (any number of nodes could be sent in the update). I've got a separate method to handle adding of new nodes as I can just merge XDocuments to do that.
Any pointers on where to start?
Thanks,
Annelie