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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:20:35+00:00 2026-05-26T07:20:35+00:00

I am tryng to sort a result from an xpath query but it fails.

  • 0

I am tryng to sort a result from an xpath query but it fails.

Ooutput:

ABC
DEF

But I am expecting:

DEF
ABC

The source code looks like this, it uses an XML expression and sorts the result:

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

const string query = "//Z/X/Code";

var expr = nav.Compile(query);
expr.AddSort("Code",
             XmlSortOrder.Descending,
             XmlCaseOrder.None,
             "",
             XmlDataType.Text);

switch (expr.ReturnType)
{                
    case XPathResultType.NodeSet:
        var nodes = (XPathNodeIterator)nav.Evaluate(expr);

        while (nodes != null && nodes.MoveNext())
        {
            if (nodes.Current == null)
                continue;

            if (nodes.Current.HasChildren)
            {
                var childIter = nodes.Current.SelectChildren(XPathNodeType.All);

                while (childIter.MoveNext())
                {
                    if (childIter.Current != null)
                        Console.WriteLine(childIter.Current.Value);
                }
            }
            else
            {
                Console.WriteLine(nodes.Current.Value);
            }
        }

        break;
}

The XML file is simplified for this example:

<?xml version="1.0" encoding="utf-8"?>
<Z>
  <X>
    <Code>ABC</Code>
  </X>
  <X>
    <Code>DEF</Code>
  </X>
</Z>
  • 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-26T07:20:36+00:00Added an answer on May 26, 2026 at 7:20 am

    The AddSort method takes an XPath expression that is contextually bound to the XPathExpression you’ve compiled. In your case, the XPathExpression is compiled against the <Code> element. Doing AddSort("Code") implies that you have the following XML:

    <Code>
        <Code>
        </Code>
    </Code>
    

    Instead, you can either compile your expression to X:

    const string query = "//Z/X";
    

    Or you can sort on the current node (being Code), .:

    expr.AddSort(".", XmlSortOrder.Descending, XmlCaseOrder.None, "", XmlDataType.Text);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to sort query result into an array. I have following query.
I am trying to sort a list using delegates but I am getting a
I am trying to sort but there is a nil. How can i get
I am trying to sort an xml using xsl. Got some sample from xml.com.
Problem I have a YQL query result that I'm trying to get converted and
I'm trying to sort a list of products by their price. The result set
I have the following query to start with: var query = from p in
I'm trying to sort out a result set that gives the 5 closest users
I am trying to get a better and organized result from using class inheritance
Here's my query, it is fairly straightforward: SELECT INVOICE_ITEMS.II_IVNUM, INVOICE_ITEMS.IIQSHP FROM INVOICE_ITEMS LEFT JOIN

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.