vote up 3 vote down star

I want to convert an XML document containing many elements within a node (around 150) into another XML document with a slightly different schema but mostly with the same element names. Now do I have to manually map each element/node between the 2 documents. For that I will have to hardcode 150 lines of mapping and element names. Something like this:

XElement newOrder = new XElement("Order");
newOrder.Add(new XElement("OrderId", (string)oldOrder.Element("OrderId")),
newOrder.Add(new XElement("OrderName", (string)oldOrder.Element("OrderName")),
...............
...............
...............and so on

The newOrder document may contain additional nodes which will be set to null if nothing is found for them in the oldOrder. So do I have any other choice than to hardcode 150 element names like orderId, orderName and so on... Or is there some better more maintainable way?

flag

54% accept rate

3 Answers

vote up 13 vote down check

Use an XSLT transform instead. You can use the built-in .NET XslCompiledTransform to do the transformation. Saves you from having to type out stacks of code. If you don't already know XSL/XSLT, then learning it is something that'll bank you CV :)

Good luck!

link|flag
Any good XSLT editor? – Daud Oct 27 '08 at 11:12
We use xmlspy and there's a built-in editor in visual studio. I strongly recomend jenitennison.com/xslt and w3schools.com/xsl/xsl_languages.asp. – Goran Oct 27 '08 at 11:46
Michael Kay's XSLT Programmer's Guide (Wrox Press) is indispensable. – Robert Rossney Oct 27 '08 at 19:23
vote up 0 vote down

Use an XSLT transformation to translate your old xml document into the new format.

link|flag
vote up 1 vote down

XElement.Add has an overload that takes object[].

List<string> elementNames = GetElementNames();

newOrder.Add(
  elementNames
    .Select(name => GetElement(name, oldOrder))
    .Where(element => element != null)
    .ToArray()
  );

//

public XElement GetElement(string name, XElement source)
{
  XElement result = null;
  XElement original = source.Elements(name).FirstOrDefault();
  if (original != null)
  {
    result = new XElement(name, (string)original)
  }
  return result;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.