Below the xml doc

    <Root>
        <Global>
        </Global>
        <local>
            <section name="A">
                <subsection name="A">
                    <innersection name="A">
                        <Property1>
                        </Property1>
                    </innersection>
                    <innersection name="B">
                        <Property1>
                        </Property1>
                    </innersection>
                </subsection>
                <subsection name="B">
                    <innersection name="A">
                        <Property1>
                        </Property1>
                    </innersection>
                    <innersection name="B">
                        <Property1>
                        </Property1>
                    </innersection>
                </subsection>
            </section>
            <section name="B">
                <subsection name="A">
                    <innersection name="A">
                        <Property1>
                        </Property1>
                    </innersection>
                    <innersection name="B">
                        <Property1>
                        </Property1>
                    </innersection>
                </subsection>
                <subsection name="B">
                    <innersection name="A">
                        <Property1>
                        </Property1>
                    </innersection>
                    <innersection name="B">
                        <Property1>
                        </Property1>
                    </innersection>
                </subsection>
            </section>
        </local>
    </Root>

Now i want the property1 whose section name="B" and subsection name="B" and innersection name="B" in one single query using linq to xml.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Here is my take, alternative to Jon's, assuming Property1 occurs only once inside an innersection and you need only that one:

var Property1 = doc.Root.Elements("local").Elements("section")
    .Where(x => x.Attribute("name") == "B").Elements("subsection")
    .Where(x => x.Attribute("name") == "B").Elements("innersection")
    .Where(x => x.Attribute("name") == "B").Element("Property1");
link|improve this answer
feedback

EDIT: Removed LINQ to XML "normal" style of query as ssg's is better. I wanted to leave the XPath version though. It's untested, but I think it should work...

var properties = doc.XPathSelectElements(
 "//section[@name='B']/subsection[@name='B']/innersection[@name='B']/property1");
link|improve this answer
Wouldn't this traverse complete DOM instead of starting by filtering down section's under local? – ssg Oct 14 '09 at 12:18
Yes, it would. I strongly suspect that for most real life cases it would work in the blink of an eye though :) – Jon Skeet Oct 14 '09 at 13:01
That's easily fixed by making the query start with /Root/local/section rather than //section. – Robert Rossney Oct 14 '09 at 19:22
@Robert: ssg's comment was probably more in reference to the query that I edited out a while ago :) – Jon Skeet Oct 14 '09 at 20:21
.......It was :) – ssg Oct 14 '09 at 21:06
feedback

Since this question was also tagged vb.net, here is the equivalent of ssg's query in vb.net:

Dim Property1 = doc.<local>.<section>.Where(Function(x) x.@name = "B") _
                           .<subsection>.Where(Function(x) x.@name = "B") _
                           .<innersection>.Where(Function(x) x.@name = "B") _
                           .<Property1>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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