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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:01:59+00:00 2026-05-28T04:01:59+00:00

I am looking for a linq to Xdoc query to group by a subset

  • 0

I am looking for a linq to Xdoc query to group by a subset of the XML nodes. I’ve only been able to get this working to return a subset of the data but I need the entire xml document passed back with only the particular nodes grouped.

<Root>
  <Elementname1>
  </Elementname1>
  <Elementname2>
  </Elementname2>
  <Elementname3 attrname="test1">
    <Child>
    </Child>
  </Elementname3>
  <Elementname3 attrname="test1">
    <Child>
    </Child>
  </Elementname3>
</Root>

This code:

var result =
        from row in xDoc.Descendants("Elementname3")
        group row by (string)row.Attribute("attrname") into g
        select g.First();

returns:

<Elementname3 attrname="test1">
 <Child></Child>
</Elementname3>

Expecting:

<Root>
  <Elementname1>
  </Elementname1>
  <Elementname2>
  </Elementname2>
  <Elementname3 attrname="test1">
    <Child>
    </Child>
  </Elementname3>
</Root>

I understand since descendant element is starting at elementname3; just not sure on how to expound the linq query to start with the root node and group as expected.

  • 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-28T04:02:00+00:00Added an answer on May 28, 2026 at 4:02 am

    Try this:

    var result = new XDocument(
        new XElement("Root",
            from x in doc.Root.Elements()
            group x by new { x.Name, Attr = (string)x.Attribute("attrname") } into g
            select g.First()
        )
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a nice simple LINQ query that can get an item
I've been looking through related LINQ questions here trying to figure this one out,
I have an entity model and I've been looking to write a linq query
I'm looking into LINQ and the query language appears (at least on the surface)
I have just been looking into Linq with ASP.Net. It is very neat indeed.
I am looking for a way in LINQ to match the follow SQL Query.
LINQ gurus, I am looking for help to write a query... I have a
I'm new to Linq and I'm trying to query a XML document to find
I am looking for linq query to see if there exists a similar object
Looking for a way to group in sets of n elements with LINQ. I.e:

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.