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 4086178
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:41:21+00:00 2026-05-20T18:41:21+00:00

I’m trying to select elements based on the attributes of sub a element of

  • 0

I’m trying to select elements based on the attributes of sub a element of that element.

Original Xml:

<Root>
      <Element1 id="1">
        <element2>XXXX</element2>
        <element3>XXXX</element3>
        <element4>XXXX</element4>
        <Filter attr1="1" attr2="0" attr3="0" attr4="1" attr5="0"></Filter>
      </Element1>
      <Element1 id="2">
        <element2>XXXX</element2>
        <element3>XXXX</element3>
        <element4>XXXX</element4>
        <Filter attr1="1" attr2="0" attr3="1" attr4="1" attr5="0"></Filter>
      </Element1>
      <Element1 id="3">
        <element2>XXXX</element2>
        <element3>XXXX</element3>
        <element4>XXXX</element4>
        <Filter attr1="1" attr2="1" attr3="0" attr4="1" attr5="0"></Filter>
      </Element1>
    </Root>

This is what I’ve done so far:

Dim xmlElement = (From rec In RecipeXmlDocument.Descendants("Element1") _
Where (rec.Descendants("Filter").@attr1= "1" _
                   Or rec.Descendants("Filter").@attr2 = "0" _
                   Or rec.Descendants("Filter").@attr3 = "0" _
                   And (rec.Descendants("Filter").@attr4 = "1" _
                        Or rec.Descendants("Filter").@attr5 = "0" _

This throws the following error: “Exception of type ‘System.Linq.SystemCore_EnumerableDebugViewEmptyException’ was thrown.”

What the code is trying to do is to select all the Element1s where the filter element of that element1 matches the where clause of the statement.

I’m fairly new to linq and i’m not exactly sure what I’m doing wrong.

  • 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-20T18:41:22+00:00Added an answer on May 20, 2026 at 6:41 pm

    This is a case where it’s likely that XPath will produce the right result with less work than it would take to do with LINQ. You can formulate an XPath query like:

    /Root/Element1[Filter[(@attr1 = '1' or @attr2 = '0' or @attr3 = '0')
                      and (@attr4 = '1' or @attr5 = '0')]]
    

    (I added parentheses around the tests conjoined with or because I suspect that’s what you want, but I could be wrong.) That will find all Element1 elements that have a Filter child element whose attributes pass the predicate described.

    Then you can just iterate over those elements by using XDocument.XPathSelectElements():

    var elements = doc.XPathSelectElements(xpath);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am trying to render a haml file in a javascript response like so:

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.