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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:36:52+00:00 2026-06-17T06:36:52+00:00

Inside a loop I’m trying to add an object with the type Location to

  • 0

Inside a loop I’m trying to add an object with the type Location to a List<Location> property.

CONTROLLER:

 [HttpPost]
 public ActionResult Index([Bind(Include = "CitySearch")]HomeViewModel model)
 {
    List<CityIdentity> ids = null;
    ids = service.GetNamesId(model.CitySearch);

    foreach (var id in ids)
    {
        var loc = service.GetLocation(id.CityId);
        var location = new Location
        {
            CityId = id.CityId,
            Place = loc.Place,
        };
        model.Locations.Add(location);
    }
}

VIEWMODEL:

public class HomeViewModel
{
    public string CitySearch { get; set; }

    public List<Location> Locations { get; set; }

}

model is of type HomeViewModel and property Locations is of type List<Location>. model is instance from form HttpPost action from submitting the form in the View.

I’m debugging and the error’s occurs at model.Locations.Add(location) and I’m getting object reference not set to an instance of an object. and nullref exception.

Any idea?

  • 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-17T06:36:52+00:00Added an answer on June 17, 2026 at 6:36 am

    Based on your reactions and the context, it seems your Locations property isn’t initialized at the time, so you can’t use a method Add on this collection. To overcome this issue, you need to initialize this property first and then you can manipulate it whatever way you need to.

    One way of achieving this is to initialize your Locations property in the constructor of your model (or wherever you see fit).

    So just add something like this and you’re good to go:

    Locations = new List<Location>();
    

    This initializes your property enough to use its methods.

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

Sidebar

Related Questions

Inside a loop, I'm trying to set the value as the object's key. Not
In my code I am creating new objects of same type inside loop and
I'm trying to set some values to my NSMutableDictionary inside a loop and assigning
I am trying to put a while loop inside a try /catch block. To
I have several(inside loop) dynamically created html buttons like : sb.Append(<input type=\button\ name=\deleteimage +
I am trying to create loop inside of a HEREDOC in php. I know
Inside the initialize() function there is a jQuery each loop. Inside that loop is
Does defining functions inside a loop affect performance? Like var doSomething = function(element){ $(element).whatever();
I have the following loop inside an function init(); which is executed onload, I
Im calling a for loop inside a for loop and its not working, here's

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.