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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:30:08+00:00 2026-05-26T08:30:08+00:00

I am getting an exception: System.Xml.XPath.XPathException: Expression must evaluate to a node-set. when I

  • 0

I am getting an exception: System.Xml.XPath.XPathException: Expression must evaluate to a node-set.

when I run this code that I am expecting to count the number of nodes, what I doing wrong?

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

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

var iterator = nav.Select(expr);
while (iterator.MoveNext())
{
    if (iterator.Current != null && !iterator.Current.HasChildren) continue;
    if (iterator.Current != null)
    {
        var childIter = iterator.Current.SelectChildren(XPathNodeType.Element);
        while (childIter.MoveNext())
        {
            if (childIter.Current != null) Console.WriteLine(childIter.Current.Value);
        }
    }
}

my xml file looks like this

<?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>

Note: Thank you for the effords to help me. I came up with this solution:

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

const string query = "count(//bookstore/book)";            
var expr = nav.Compile(query);

switch (expr.ReturnType)
{        
    case XPathResultType.Number:
        Console.WriteLine(nav.Evaluate(query));
        break;

    case XPathResultType.String:
    // case XPathResultType.Navigator:
        Console.WriteLine(nav.Evaluate(query));
        break;

    case XPathResultType.Boolean:
        Console.WriteLine(nav.Evaluate(query));
        break;

    case XPathResultType.NodeSet:
        var nodes = nav.Select(expr);
        while (nodes.MoveNext())
        {                      
            if (nodes.Current != null && !nodes.Current.HasChildren) continue;
            if (nodes.Current == null) continue;
            var childIter = nodes.Current.SelectChildren(XPathNodeType.Element);
            while (childIter.MoveNext())
            {
                if (childIter.Current != null) Console.WriteLine(childIter.Current.Value);
            }
        }
        break;

    case XPathResultType.Any:
        Console.WriteLine(nav.Evaluate(query));
        break;              

    default:
        Console.WriteLine(nav.Evaluate(query));                    
        break;
}            
  • 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-26T08:30:09+00:00Added an answer on May 26, 2026 at 8:30 am

    Use Evaluate, not Select:

    double count = (double)nav.Evaluate(expr);

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting an exception with this code; InnerException: System.InvalidOperationException Message=The specified type was not
This has been driving me nuts. I keep getting the following exception System.InvalidOperationException: The
So I'm getting a prefetch abort exception on our arm9 system. This system does
i keep getting this error: Exception Details: System.NotSupportedException: Cannot serialize member HannaPrintsDataAccess.Customer.CustomerAddresses of type
I am getting this exception when trying to start an activity (TestLocationActivity) that is
I am getting an intermittent System.Xml.Xsl.XslTransformException exception in our production environment when attempting an
I am getting a Method not found: 'Boolean MyCompany.LibraryAssembly.SomeFunction(System.String)' exception/error when running a VB.NET
I'm getting NullPointerException :s when using sstable2json in Cassandra 0.6.0-beta3: $ bin/sstable2json .../cassandra/data/system/LocationInfo-1-Data.db Exception
I am getting this exception while accessing the jax-ws web service from my client.
I am getting Following Exception while configuring the Connection Pool in Tomcat This is

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.