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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:29:32+00:00 2026-06-05T08:29:32+00:00

I am working on asp.net application and I have created a query. I want

  • 0

I am working on asp.net application and I have created a query. I want to change it so that if checkbox is checked then null records for a field can not be entered. my query look like this:

var query = from d in context.data_vault.Where(d => states.Contains(d.STATE) 
    && counties.Contains(d.COUNTY)
    && cities.Contains(d.CITY)
    && zipCodes.Contains(d.ZIP)
    && areaCodes.Contains(d.AREA_CODE)
    && (d.MKTVAL > Convert.ToInt32(txtMarketValueFrom) && d.MKTVAL < Convert.ToInt32(txtMarketValueTo.Text))
    && (d.LTV > Convert.ToByte(txtLTVFrom.Text ) && d.LTV < Convert.ToByte(txtLTVTo.Text))
    && d.FHA_LIMIT_FLAG == chkFHA.Checked
    && (d.MTGAMT > Convert.ToInt32(txtMortgageFrom.Text) && d.MTGAMT < Convert.ToInt32(txtMortgageTo.Text))
    && (d.MTGDATE > Convert.ToDateTime(txtMortgageDateFrom.Text) && d.MTGDATE < Convert.ToDateTime(txtMortgageDateTo.Text))
    && d.LOAN_TYPE == drpMortgageLoanType.Text
    //&& (chkLenderName.Checked )  d.LENDERNAME != null  
    && lenderNames.Contains(d.LENDERNAME)
    //&& rdoexcludeSecondMortgage.Checked ? d.HE == "" : rdoexcludeSecondMortgage.Checked
    //&& d.HEAMT = txtSecondMortgageFrom.Text
    && d.HE_LOAN_TYPE == drpSecondMortgageLoanType.SelectedItem.Text
    && d.HELENDERNAME == txtSecondMortgageLenderName.Text
    && (d.AGE > Convert.ToByte(txtAgeFrom.Text) && d.AGE < Convert.ToByte(txtAgeTo.Text)
    //rdoNoPhone.Checked ? d.phones
    ))
    group d by new
    {
        d.STATE
    } into g
    select new
    {
        g.Key.STATE,
        Count = (Int32?)g.Sum(p => p.SCORE),
        Phone = (Int64?)g.Count(p => p.PHONE != null)
    };

GridView1.DataSource = query;
GridView1.DataBind();

How to change it so that if rdoNoPhone.Checked radio button is checked then records with null phone are not included

  • 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-05T08:29:33+00:00Added an answer on June 5, 2026 at 8:29 am

    try changing your notation like this:

     var query = from d in context.data_vault.Where(delegate(ata_vault d){
    
      return states.Contains(d.STATE) 
        && counties.Contains(d.COUNTY)
        && cities.Contains(d.CITY)
        && zipCodes.Contains(d.ZIP)
        && areaCodes.Contains(d.AREA_CODE)
        && (d.MKTVAL > Convert.ToInt32(txtMarketValueFrom) && d.MKTVAL < Convert.ToInt32(txtMarketValueTo.Text))
        && (d.LTV > Convert.ToByte(txtLTVFrom.Text ) && d.LTV < Convert.ToByte(txtLTVTo.Text))
        && d.FHA_LIMIT_FLAG == chkFHA.Checked
        && (d.MTGAMT > Convert.ToInt32(txtMortgageFrom.Text) && d.MTGAMT < Convert.ToInt32(txtMortgageTo.Text))
        && (d.MTGDATE > Convert.ToDateTime(txtMortgageDateFrom.Text) && d.MTGDATE < Convert.ToDateTime(txtMortgageDateTo.Text))
        && d.LOAN_TYPE == drpMortgageLoanType.Text
        //&& (chkLenderName.Checked )  d.LENDERNAME != null  
        && lenderNames.Contains(d.LENDERNAME)
        //&& rdoexcludeSecondMortgage.Checked ? d.HE == "" : rdoexcludeSecondMortgage.Checked
        //&& d.HEAMT = txtSecondMortgageFrom.Text
        && d.HE_LOAN_TYPE == drpSecondMortgageLoanType.SelectedItem.Text
        && d.HELENDERNAME == txtSecondMortgageLenderName.Text
        && (d.AGE > Convert.ToByte(txtAgeFrom.Text) && d.AGE < Convert.ToByte(txtAgeTo.Text)
        && rdoNoPhone.Checked ? d.PHONE!= null : true
        })
        group d by new
        {
            d.STATE
        } into g
        select new
        {
            g.Key.STATE,
            Count = (Int32?)g.Sum(p => p.SCORE),
            Phone = (Int64?)g.Count(p => p.PHONE != null)
        };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on asp.net MVC 3 application. I have created a Razor view
Summary We have an ASP.NET application that allows users to query a SQL Server
I am working on an asp.net application and I have created a folder named
I am working on asp.net MVC3 application and I have created a layout.cshtml which
I'm working on My First ASP.NET Application. I have created some text boxes and
I have created a Web Application in asp.net 2.0. which is working fine on
I am working on an ASP.Net web application that must print dynamically created labels
I am working on asp.net MVC 3 application and I have created a model.
I have an ASP.NET application I am working on. One of the requirements of
I am working with an ASP.NET MVC application. I have one master page having

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.