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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:27:35+00:00 2026-05-25T16:27:35+00:00

I need to ignore some or all conditions in WHERE statement if parameter is

  • 0

I need to ignore some or all conditions in WHERE statement if parameter is null or empty
F.E:

I have simple LINQ query

var query = from x in context.a
            where x.p == param1 && x.i == param2
            select x;

How can I ignore x.p == param1 if param1 is null or emty?

EDIT

Tried this

var query = from myLog in myContext.ApsValidationLogs
            where (myLog.systemtype == comboBoxSystemType.SelectedItem.ToString() || string.IsNullOrEmpty(comboBoxSystemType.SelectedItem.ToString()))
              && (myLog.bankid == comboBoxBankId.SelectedItem.ToString() || string.IsNullOrEmpty(comboBoxBankId.SelectedItem.ToString())))
            select myLog;

But got

Object reference not set to an instance of an object.

In case if second combobox’s item is null. What’s wrong?

  • 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-25T16:27:35+00:00Added an answer on May 25, 2026 at 4:27 pm

    You can add it as a condition:

     var query= from x in context.a 
                where String.IsNullOrEmpty(param1) || (x.p == param1 && x.i == param2)
                select x;
    

    If param1 is null or empty, the condition will always be true, which effectively “ignores” the where conditions entirely.

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

Sidebar

Related Questions

I have a situation where I need to ignore parts of page load sub
I have a situation where I need NHibernate to ignore its caches and just
Need some help, please. I have a line of horizontal thumbnails loaded as ONE
Using Mercurial, I need to ignore all files and directories except directories tests and
Once again, I need some help and I appreciate you all for being here
I've managed to mostly ignore all this multi-byte character stuff, but now I need
I need to copy a row based on some condition(where clause), from a table,make
I have a table called orders this table contains all the information we need.
I have a table where I wish to update some of the rows. All
I need split string by commas and spaces, but ignore the inside quotes, single

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.