I have an XDocument object. I want to query for elements with a particular name at any depth using LINQ. When I use Descendants("element_name"), I only get elements that are direct children of the current level. What I'm looking for is the equivalent of "//element_name" in XPath...should I just use XPath, or is there a way to do it using LINQ methods? Thanks.
|
Descendants should work absolutely fine. Here's an example:
Results:
|
|||||||
|
|
An example indicating the namespace:
|
|||||
|
|
Descendants will do exactly what you need, but be sure that you have included a namespace name together with element's name. If you omit it, you will probably get an empty list. |
|||
|
|
|
There are two ways to accomplish this,
The following are samples of using these approaches,
If you use XPath, you need to do some manipulation with the IEnumerable:
Note that
results either a null pointer, or no results. |
|||||
|
|
Thank you...you're both correct. I had an invalid selector in my object initializer, and LINQ was swallowing the exception and returning me an empty collection. When I fixed that, Descendants did indeed work as expected. |
|||
|
|
|
You can do it this way: xml.Descendants().Where(p => p.Name.LocalName == "Name of the node to find") where xml is a XDocument. Be aware that the property Name returns an object that has a LocalName and a Namespace. That's why you have to use Name.LocalName if you want to compare by name. |
|||
|
|
|
I am using
|
|||
|
|
|
(Code and Instructions is for C# and may need to be slightly altered for other languages) This example works perfect if you want to read from a Parent Node that has many children, for example look at the following XML;
Now with this code below (keeping in mind that the XML File is stored in resources (See the links at end of snippet for help on resources) You can obtain each email address within the "emails" tag.
Results
Note: For Console Application and WPF or Windows Forms you must add the "using System.Xml.Linq;" Using directive at the top of your project, for Console you will also need to add a reference to this namespace before adding the Using directive. Also for Console there will be no Resource file by default under the "Properties folder" so you have to manually add the Resource file. The MSDN articles below, explain this in detail. |
|||
|