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

  • Home
  • SEARCH
  • 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 7864589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T23:49:52+00:00 2026-06-02T23:49:52+00:00

I am trying to read a value from an XML file using LINQ. This

  • 0

I am trying to read a value from an XML file using LINQ.
This is really the first time that I am trying to use LINQ vs. the ordinary C#/.Net approach.

My XML looks like this:

<Description>
<Account Green="A" White="D">House</Account>
<Account Green="B" White="D">Car</Account>
</Description>

This is the LINQexpression I am using. I’d like to read the value House, in other words, the element with the attribute A and D.

var feeds = (from item in doc.Descendants("Description")
 from category in item.Elements("Account")                    
 let attribute = category.Attribute("Green")                    
 let xAttribute = category.Attribute("White")                    
 where attribute != null && (xAttribute != null && (xAttribute.Value == "A" 
 && attribute.Value == "D")) select item.Value).ToString();   

I can’t figure out what I am doing wrong.
Any help is appreciated.

  • 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-06-02T23:49:54+00:00Added an answer on June 2, 2026 at 11:49 pm

    You have an IEnumerable<string> here – you apparently just want a single string here so add a First() to get the value of the first item in your enumeration:

    var feeds = (from item in doc.Descendants("Description")
     from category in item.Elements("Account")                    
     let attribute = category.Attribute("Green")                    
     let xAttribute = category.Attribute("White")                    
     where attribute != null && (xAttribute != null && (xAttribute.Value == "A" 
     && attribute.Value == "D")) select category.Value).First(); 
    

    An easier way to achieve the same might be:

    string result = doc.Descendants("Account")
                       .Where(x => x.Attribute("Green") != null && x.Attribute("Green").Value == "A"
                                && x.Attribute("White") != null && x.Attribute("White").Value == "D")
                       .Select(x => x.Value)
                       .First();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to read an XML file using LINQ. I have had no
I am trying to read from an ncx file (i.e. xml file) using XElement:
I am trying to read values from a text file using the Qt code
I'm trying to read xml file from vbs script. Xml is encoded in utf-8
I am trying to read a xml file from the web and parse it
I'm trying to run Junit test from my ant build.xml file. I read here
Hi I am trying to read XML File using XLinq and binding the values
I am trying to read data from an MS Project XML file. I have
Im trying to read a XML file from google API places and add to
I'm trying to input data from an XML file in a C++ program using

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.