I am now learning XMLDocument but I've just ran into XDocument and when I try to search the difference or benefits of them I can't find something useful, could you please tell me why you would use one over another ?
|
|
||||
|
|
|
If you're using .NET version 3.0 or lower, you have to use If you get the choice, however, I would thoroughly recommend using
and
Namespaces are pretty easy to work with in LINQ to XML, unlike any other XML API I've ever seen:
LINQ to XML also works really well with LINQ - its construction model allows you to build elements with sequences of sub-elements really easily:
It's all a lot more declarative, which fits in with the general LINQ style. Now as Brannon mentioned, these are in-memory APIs rather than streaming ones (although |
|||||||||||||||
|
|
XmlDocument is great for developers who are familiar with the XML DOM object model. It's been around for a while, and more or less corresponds to a W3C standard. It supports manual navigation as well as XPath node selection. XDocument powers the LINQ to XML feature in .NET 3.5. It makes heavy use of IEnumerable<> and can be easier to work with in straight C#. Both document models require you to load the entire document into memory (unlike XmlReader for example). |
|||
|
|
|
XDocument is from the LINQ to XML API, and XmlDocument is the standard DOM-style API for XML. If you know DOM well, and don't want to learn LINQ to XML, go with XmlDocument. If you're new to both, check out this page that compares the two, and pick which one you like the looks of better. I've just started using LINQ to XML, and I love the way you create an XML document using functional construction. It's really nice. DOM is clunky in comparison. |
|||
|
|
|
Also note XDocument is supported in: Xbox 360 and Windows Phone OS 7.0. If you target them develop for XDocument or migrate from XmlDocument. |
|||
|
|
|
I am surprised none of the answers so far mentions the fact that This can be a critical feature in some cases, and you better be aware of this before you happily start to implement using |
|||
|
|
|
I believe that One place this happens is in managing scan data. Many scan tools output their data in XML (for obvious reasons). If you have to process a lot of these scan files, I think you'll have better performance with |
|||||
|
