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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:20:30+00:00 2026-05-27T13:20:30+00:00

I query my data from database to display in my view. I used this

  • 0

I query my data from database to display in my view.
I used this query :

var ien_content = from c in this.DataContext.tbl_Contents
              where c.ContentTypeID == id
              &&
              (
              IsActive == false?true :(c.Active == null?true:c.Active > 0)
              )
              orderby c.RegisterDate descending 
              select c;
return ien_content.ToList();

There are many rows in this tbl_Contents, but when all of these rows are set Active = 0, it show the error : System.NullReferenceException: Object reference not set to an instance of an object.

Anyone can tell me, how to catch this error? Thanks.

  • 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-27T13:20:31+00:00Added an answer on May 27, 2026 at 1:20 pm

    Refine your query with null check for c using where c!= null condition.
    Hence you can rewrite it like this:

    if(DataContext != null && DataContext.tbl_Contents != null)
    {
        var ien_content = from c in this.DataContext.tbl_Contents
              where c!= null && c.ContentTypeID == id
              &&
              (
              IsActive == false?true :(c.Active == null?true:c.Active > 0)
              )
              orderby c.RegisterDate descending 
              select c;
    }
    

    If still there is exception then only thing remaining is c.RegisterDate which can be null. So check, if c.Registerdate is not null for any of your rows.

    Try replacing the linq with forloop so that you can debug it row by row ,something like this

    List list = new List();
    foreach(var c in this.DataContext.tbl_Contents)
    {
    if(c.ContentTypeID == id && ( IsActive == false?true :(c.Active == null?true:c.Active > 0)))
        list.Add(c)
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am testing a simple query to get data from an AS400 database. I
Context In our application, we snapshot data from a database using a query that
I'm reading data from a table( from a MySQL Database) with Hibernate SQL Query.
I have written this query for retrieving data from mysql as below select FeedbackCode,EMailID,FeedbackDetail,
I'm using the Repeater control on my site to display data from the database.
i am fetching this data from database : $sql = SELECT * FROM articles
Im trying to get data from a mysql database and display it in an
I'm creating a application that will fetch data from an SQLite database and display
How to query data from table_1 which ID is not available on table_2 that
I have a YQL query that extracts data from a page and returns it

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.