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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T15:16:22+00:00 2026-05-20T15:16:22+00:00

I have an XML that looks like this <Labs> <Lab id=a name=a> <Test name=aa></Test>

  • 0

I have an XML that looks like this

<Labs>
  <Lab id="a" name="a">
    <Test name="aa"></Test>
    <Test name="ab"></Test>
    <Test name="ac"></Test>
  </Lab>
  <Lab id="b" name="b">
    <Test name="ba"></Test>
    <Test name="bb"></Test>
  </Lab>
</Labs>

I want to get the data from this XML in a single table using LINQ to XML through a single select statement. If you could provide me with a reference of how to do the query.

I am binding the Linq to XML query output to silverlight grid. The output should be like this in silverlight…

LabName    TestName
a          aa
a          ab
a          ac
b          ba
b          bb
  • 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-20T15:16:23+00:00Added an answer on May 20, 2026 at 3:16 pm

    OK here is a working example:

    string xml =@"<Labs>
      <Lab id='a'>
        <Test name='aa'></Test>
        <Test name='ab'></Test>
        <Test name='ac'></Test>
      </Lab>
      <Lab id='b'>
        <Test name='ba'></Test>
        <Test name='bb'></Test>
      </Lab>
    </Labs>";
    
    XDocument document = XDocument.Parse(xml);
    IEnumerable<XElement> xElements = document.Descendants().Where(e => e.Name == "Test");
    var results =  xElements.Select(m => new
                                            {
                                                Test = m.Attributes("name").FirstOrDefault().Value, 
                                                        Lab =m.Parent.Attributes("id").FirstOrDefault().Value
                                            });
            foreach (var result in results)
    {
                Console.Write(result.Lab);
                Console.Write('\t');
                Console.WriteLine(result.Test);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML doc that looks like this. <Results> <Name>Lab Asst1 </Name> <Subject>
So I have xml that looks like this: <todo-list> <id type=integer>#{id}</id> <name>#{name}</name> <description>#{description}</description> <project-id
I have a XML Structure that looks like this. <sales> <item name=Games sku=MIC28306200 iCat=28
I have some XML code that looks like this <SEARCHRESULTS> <FUNCTION name=BarGraph> <PARAMETER name=numList></PARAMETER>
I have XML that looks like this: <Parameter Name=parameter name Value=parameter value /> which
I have some XML that looks like this: <abc x={></abc> I want to force
I have an XML spec that looks like this: <Root> <Directory Name=SomeName> <TextFile Name=ExampleDocument.txt>This
I have XML data that looks like this <?xml version=1.0 encoding=utf-8?> <root> <account var1=
I have an XML document that looks like this: <file> <name>NAME_OF_FILE</name> </file> <file> <name>NAME_OF_FILE</name>
I have an xml that looks like this: <Config> <A></A> <Template><B/><C/></Template> </Config> and I

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.