Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4044874
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T13:20:48+00:00 2026-05-20T13:20:48+00:00

Just when I was thinking that I had Linq To Xml sussed I’m faced

  • 0

Just when I was thinking that I had Linq To Xml sussed I’m faced with yet another error! I think if I was to understand the linq search process in general better I might have more success, so any good links regarding that are also welcome. To my problem however; using the code below:

    Dim xd As XDocument = _
    <?xml version="1.0" encoding="utf-8"?>
    <root>
        <element>
            <subelement id="1"/>
            <subelement id="2"/>
            <subelement id="3"/>
        </element>
        <element>
            <subelement id="4"/>
            <subelement id="1"/>
            <subelement id="5"/>
        </element>
    </root>

    Dim results = _
    From q In xd.Descendants.<element> _
    Where q.<subelement>.@id = 1

    For Each xe As XElement In results
        Console.WriteLine(xe.ToString)
    Next

I would have expected the above code to return both ‘element’ nodes, but it only returns the first because it only searches the first ‘subelement’ node within ‘element’, how can I make the where clause apply to all ‘subelement’ nodes?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T13:20:49+00:00Added an answer on May 20, 2026 at 1:20 pm

    You could do

    Dim results = _
        From q In xd.Descendants.<element> _
        From p In q.<subelement> _
        Where p.@id = 1
    

    (That is, if my VB.NET is up to the task here… I could do it in C#. Please feel free to edit.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just thinking about the best way to build an Order form that would (from
I was thinking many times, now days that we have Linq and other CLR
Maybe I'm just thinking about this too hard, but I'm having a problem figuring
I just started thinking about creating/customizing a web crawler today, and know very little
Maybe I am just over thinking this and need to write some more prototype
This is probably just wishful thinking... Is there any way to check to see
Without thinking about it at all I just want to say I should allow
I've just started to learn C (using Thinking In C ) and I'm wondering
I have just done something without thinking it through. I have made a branch
This was just what I was thinking for this solution and I would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.