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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:54:20+00:00 2026-05-23T09:54:20+00:00

In a .Net project in which I’m using NHibernate, I have a piece of

  • 0

In a .Net project in which I’m using NHibernate, I have a piece of code that build a list of expression trees depending on the values set in the filter by the user in the UI.
The expression is build against a specific object of my domain model, let’s say Customer.
When I wanna create a filter criteria for a property of Customes, everything’s fine, like in the following example:

Expression<Func<Model.Customer, bool>> expr = c =>
                    c.Name == "My Company";

But now, I need to create an expression that let me filter che customer based on a condition involving a one to many relation… let’s say Order. A customer can have many orders, so the relationship is one-to-many. I need to build an expression that I can apply to a Customer query, in order to exptract only the customers which have at least one order placed in 2010.I’d write something like this:

Expression<Func<Model.Cusotmer, bool>> expr = c =>                        
                    c.Orders.Where(o => o.year == 2010).Count() > 0;

Too bad this won’t work. It seems that NHibernate is not able to parse this Expression.
Any idea on how to write an expression tree that implement that search criteria and is parsable by Linq 2 NHibernate?

  • 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-23T09:54:21+00:00Added an answer on May 23, 2026 at 9:54 am

    because you use Count() > 0 you can use Any instead:

    Expression<Func<Model.Cusotmer, bool>> expr = c =>                        
                        c.Orders.Any(o => o.year == 2010);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .NET project which references another assembly that is built outside of
I have an ASP.net project which involves using a custom IHttpModule. This module will
I have an ASP.NET project which is a front-end to a database. In addition
I have an ASP.NET project which has already some custom fields in it's web.config
I have created a a subclass of Table in my ASP.NET project which creates.
I have a Site.Master in my ASP.NET project which defines a HEAD section as
I have an ASP.NET project which gives me the following exception if I try
I have ASP.NET project which do some file access and manipulation, the methods which
I have a ASP.NET project which relies upon the FreeImage .NET wrapper. This is
I work on an ASP.Net project which we build with VS 2010. We use

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.