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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T05:21:06+00:00 2026-05-18T05:21:06+00:00

nHibernate allows you to sort column names easily, so long as the column name

  • 0

nHibernate allows you to sort column names easily, so long as the column name matches the mapping. So, for example:

 Map(Function(x) x.CreatedOn)


 criteria = criteria.AddOrder(New Global.NHibernate.Criterion.Order("CreatedOn", True))

Is all above board and cosy.

However I’m having trouble getting the right syntax to order by properties which are inferred from the object rather than directly mapped. I’m not even sure if the latter is possible. Consider the following:

 HasMany(Function(x) x.Shipments).Cascade.SaveUpdate()

Public Overridable ReadOnly Property Items() As IList(Of OrderItem)
    Get
        Return Shipments.SelectMany(Function(x) x.Items).ToList().AsReadOnly()
    End Get
End Property

How would one order by Items.Count in that situation? Trying the objvious:

criteria = criteria.AddOrder(New Global.NHibernate.Criterion.Order("Items.Count", True))

Leads to an error of “could not resolve property: Items”

Cheers,
Matt

  • 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-18T05:21:07+00:00Added an answer on May 18, 2026 at 5:21 am

    To order by part of a component, you would specify the property name and then the component part, just ask if you were accessing it off the object in code.

    criteria = criteria.AddOrder(New Global.NHibernate.Criterion.Order("Name.Surname", True))
    

    As for your second question, this is not easily accomplished with Criteria, but can easily be written using HQL:

    query = session.CreateQuery("select s from Shipment s order by size(s.Items)")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this inheritance mapping: <hibernate-mapping xmlns=urn:nhibernate-mapping-2.2> <class name=User table=[User] abstract=true> <joined-subclass name=SubUser1 table=SubUser1> <key
Does nHibernate create code that has all the details of the column? I know
In NHibernate 3.2 mapping by code, you can index a given field like so:
I'm trying to extend an xml schema (nhibernate here, for example), to add my
NHibernate has an attribute on the property element in the mapping config named formula
Using NHibernate, I need to be able to configure my application to sort a
I have read somewhere (can't remeber where and how) that NHibernate 3 allows the
I am trying to reproduce a query using the Nhibernate Criteria API and cannot
Using NHibernate ICriteria and adding .AddOrder ... I want to sort by a property
NHibernate allows me to query a database and get an IList of objects in

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.