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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:34:54+00:00 2026-06-06T14:34:54+00:00

I need to sort nodes in xml. I have the following code which successfully

  • 0

I need to sort nodes in xml. I have the following code which successfully orders them alphabetically. However, much of the data is numeric although strings are allowed. I have a IComparer set up that works to correctly sort data as I wish it to appear elsewhere.

System.Xml.Linq.XDocument output = new System.Xml.Linq.XDocument(
                    new System.Xml.Linq.XElement("xml",
                from node in input.Root.Elements("training")
                orderby node.Attribute("order").Value
                select node));

I’ve found how to use an IComparer in a method call, .OrderBy(x => x, new CustomComparer()) But, I haven’t figured out how to get that to work with the xml. From what I’ve read online, it doesn’t look like I can call an IComparer from the query syntax.

  • 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-06T14:34:55+00:00Added an answer on June 6, 2026 at 2:34 pm

    You’re right, you can’t use that overload from a query expression orderby clause. Fortunately, your query is pretty simple, so you can just use:

    // Have a using directive for System.Xml.Linq - it'll make everything simpler!
    XDocument output = new XDocument(
        new XElement("xml",
            input.Root
                 .Elements("training")
                 .OrderBy(node => node.Attribute("order)".Value, comparer)));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to have my XSLT stylesheet sort my XML file's child nodes, but
I have an array which i need to sort its elements by occurrence then
I have the following XML: <a> <b> <d>D1 content (can include child nodes)</d> </b>
I have an XML file that I need to sort. Worked great until the
I have some XML to which I need to add a child. Using SimpleXML,
I have the need to parse partial XML fragments (which are presented as std::string),
I have an XML file which I need to modify. First I need to
I need to sort on a date-field type, which name is mod_date. It works
I need to sort string, and I came up with the following function. def
I need to sort then print the result increasing and decreasing. I have some

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.