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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:53:58+00:00 2026-05-26T21:53:58+00:00

Is it possible to sort the elements and not only the nodes using XPathExpression.AddSort?

  • 0

Is it possible to sort the elements and not only the nodes using XPathExpression.AddSort?

If I change the example code on the MSDN documentation for XPathExpression.AddSort a little so I request an element and not the whole node the sort order does not work.

var doc = new XPathDocument("contosoBooks.xml");
var nav = doc.CreateNavigator();

var expr = nav.Compile("/bookstore/book/title");

expr.AddSort("title", XmlSortOrder.Descending,
               XmlCaseOrder.None, "", XmlDataType.Number);

var iterator = nav.Select(expr);
while (iterator.MoveNext())
{
    Console.WriteLine(iterator.Current);
}

I would expect this output:

The Gorgias
The Confidence Man
The Autobiography of Benjamin Franklin

But the output is this:

The Autobiography of Benjamin Franklin
The Confidence Man
The Gorgias

Here is the xml file for your reference

<?xml version="1.0" encoding="utf-8" ?>
<bookstore>
  <book genre="autobiography" publicationdate="1981-03-22" ISBN="1-861003-11-0">
    <title>The Autobiography of Benjamin Franklin</title>
    <author>
      <first-name>Benjamin</first-name>
      <last-name>Franklin</last-name>
    </author>
    <price>8.99</price>
  </book>
  <book genre="novel" publicationdate="1967-11-17" ISBN="0-201-63361-2">
    <title>The Confidence Man</title>
    <author>
      <first-name>Herman</first-name>
      <last-name>Melville</last-name>
    </author>
    <price>11.99</price>
  </book>
  <book genre="philosophy" publicationdate="1991-02-15" ISBN="1-861001-57-6">
    <title>The Gorgias</title>
    <author>
      <name>Plato</name>
    </author>
    <price>9.99</price>
  </book>
</bookstore>
  • 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-26T21:53:58+00:00Added an answer on May 26, 2026 at 9:53 pm

    It looks like a duplicate question – see XPathExpression AddSort fails

    So in your case code has to be like:

    var expr = nav.Compile("/bookstore/book");
    
    expr.AddSort("title", XmlSortOrder.Descending,
               XmlCaseOrder.None, "", XmlDataType.Number);
    

    or

    var expr = nav.Compile("/bookstore/book/title");
    
    expr.AddSort(".", XmlSortOrder.Descending,
               XmlCaseOrder.None, "", XmlDataType.Number);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to sort a TreeView collection using IComparer<T> and not IComparer ?
Is it possible to sort div layers? Examples only show list items being sorted.
Is it possible to sort a MembershipUserCollection by IsApproved and then Comment without modifying
I have a number of very long arrays. No run-time sort is possible. It
Is it possible via an attribute of some sort to serialize a string as
I am wondering if it is possible to have a sort of thumbnail image
Is it possible to map an array to a new array and to sort
I know that JTable can sort by a single column. But is it possible
I'd like to use the somelist.sort() method to do this if possible. I have
Possible Duplicate: PHP Sort a multidimensional array by element containing date 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.