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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:29:47+00:00 2026-06-17T23:29:47+00:00

I have following situation. I have Customer and CompanyCustomerAssignment objects (with 1:1 relation). One

  • 0

I have following situation. I have Customer and CompanyCustomerAssignment objects (with 1:1 relation). One of properties in CompanyCustomerAssignment is CustomerGroup.
Now – I would like to QueryOver – when CustomerGroup is passed, than fetch Customers which belongs to this group, but when it comes as null I would like to query all. Well it seems simple in “SQL”:

...WHERE CustomerGroupId = @param OR @param is NULL;

Unfortunately I have no idea with QueryOver (custGrp is paramater – can be an object or null)

Customer c = null;
CompanyCustomerAssignment cca = null;

_session.QueryOver<Customer>(() => c)
    .JoinAlias(() => c.CompanyCustomerAssignment, () => cca)
    .Where(() => cca.Company == currentCompany && c.IsActive == true)
    .And(() => cca.CustomerGroup == custGrp || custGrp == null ) // <- this seems to be problem to me
    .List()
    .Select(x => new CustomerApiModel() {CustomerId = x.Id})
    .ToList();

But this does not work – I receive a message, that Customer does not have such a property, which sounds logical but does not help me at all.

  • 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-06-17T23:29:48+00:00Added an answer on June 17, 2026 at 11:29 pm

    In this case, we know the condition @param is NULL before the query is executed, or better before is assembled at all. So let’s extend Criteria with custGrp only if it is filled.

    var criteria = _session.QueryOver<Customer>(() => c)
        .JoinAlias(() => c.CompanyCustomerAssignment, () => cca)
        .Where(() => cca.Company == currentCompany && c.IsActive == true);
    
    // if during the query build
    if(custGrp != null)
    {
      criteria.Where(() => cca.CustomerGroup == custGrp);
    }
    
    var results = criteria
        .List()
        ... 
    

    This makes the SQL part more efficient, and we can do more tricks…

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

Sidebar

Related Questions

In one of my projects I have the following situation: I have Availability Objects
I have the following situation. A customer uses JavaScript with jQuery to create a
I have the following situation: using a classical Java server (using ServerSocket) I would
I have a following situation. I have a Model A with following properties: id
I have following situation - Have a MongoService class, which reads host, port, database
I have following situation. In a constructor of a pseudo class I attach a
I have following situation (simplified, of course): MyDomain.groovy: class MyDomain { MyAnotherDomain anotherDomain //
I have following situation, String a=<em>crawler</em> <em> Yeahhhhh </em></a></h3><table; System.out.println(a.indexOf(</em>)); It returns the 11
I have following situation: String a = A Web crawler is a computer program
I have following Situation, Server A sends some data (HTML form) to server B,

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.