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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:51:31+00:00 2026-06-16T01:51:31+00:00

I am getting an error of Object reference not set to an instance of

  • 0

I am getting an error of Object reference not set to an instance of an object I have tried multiple things but keep getting that error, the error is occuring on this line of code

  @if(!string.IsNullOrWhiteSpace(Model.profile.photo))
    {

  @Html.DisplayFor(x => x.profile.firstname)  @Html.DisplayFor(x => x.profile.lastname)
  }
  else {

    <p>This user does not have a profile</p>
  }

@if(!string.IsNullOrWhiteSpace(Model.profile.photo))

I have a view that contains 2 models as

public class relist_profile
{
    public relisting relisting { get; set; }
    public profile profile { get; set; }

}

and my controller is

public ActionResult detail(int id)
    {
        relisting relistings = db.relistings.Find(id);
        var profiles = (from s in db.profiles where s.registrationID == relistings.RegistrationID select s).FirstOrDefault();

        return View(new relist_profile {profile = profiles, relisting = relistings });
    }

what is occuring is that when the var profiles doesn’t match up (s.registrationID != relistings.RegistrationID) then it throws the error but if there is a PROFILE and it matches(TRUE) then everything works perfectly.
How can I resolve this issue

  • 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-16T01:51:32+00:00Added an answer on June 16, 2026 at 1:51 am

    When there is no match by registrationID, Enumerable.FirstOrDefault returns null. So profiles in public ActionResult detail(int id) is null then and null is consequently passed into the view.

    You cannot access Model.profile.photo, when Model.profile is null. Try to add null check:

    @if(Model.profile != null && 
        !string.IsNullOrWhiteSpace(Model.profile.photo))
    {
        //... 
    }
    else {
       <p>This user does not have a profile</p>
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting the NRE error that says: Object reference not set to an instance
I'm getting an object reference not set to an instance of an object error
I am getting error saying: Object reference not set to an instance of an
I keep getting this error when I run the program. Object reference not set
I am getting an Object Reference not set to an instance of an object
We started getting the 'Object reference not set to an instance of an object'
im getting the Object reference not set to an instance of an object for
Additional information: Object reference not set to an instance of an object. I have
We have been trying to analyse this exception: Message: Error: Object reference not set
I have getting a javascript error when attempting to reference an object in a

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.