vote up 1 vote down star

In my Silverlight application I'm using mostly XmlReader but I'm playing with idea to replace XmlReader implementation with LINQ to XML.

What are pros and cons between LINQ to XML and XmlReader in Silverlight?

flag

2  
Do you have any reason to believe that the pros and cons would be different for Silverlight? – John Saunders Jul 20 at 16:22
I don't think there would be any differences inherent to Silverlight. Rather, what are the differences between the two approaches irregardless of the hosting technology? – scottmarlowe Jul 20 at 16:26

2 Answers

vote up 3 vote down check

PROs of Linq to XML

  • Query XML documents with the same LINQ syntax your used to
  • Uses the same X objects that you're used to working with (XElement, etc.)

PROs of using XmlReader

  • Finer grain control over the query syntax (XPath rather than LINQ)

...personally, I switched to LINQ to XML when it was first introduced and never looked back. Haven't noticed any significant performance degradation as of yet.

link|flag
1  
XmlReader does not provide XPath support. In fact in Silverlight there is no XPath support. – AnthonyWJones Jul 20 at 21:49
vote up 3 vote down

I would just use LINQ to XML in Silverlight.

The one advantage that XmlReader has over LINQ is that it doesn't build a DOM in memory but rather moves over an existing stream. However this difference only really comes into its own if you can start processing the stream as its arriving rather than waiting for the entire content to arrive. This advantage is quite difficult to acheive and only rarely useful.

LINQ to XML is much more straight forward to query and considerably more flexiable to use, the trade off is some extra memory.

link|flag

Your Answer

Get an OpenID
or

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