Object reference not set to an instance of an object in MVC

This is the common error in MVC when you navigate to a View, “Object reference not set to an instance of an object”.

clip_image002 

When you right click go to the controller then you will see the code like below.

publicActionResult Index()

{

  return View();

}

 

The code above basically has nothing to return. You will then ask “why there is no error from Visual Studio?” Well, this is because syntax is perfectly legal. The actual fact is you need data to render.

 

In this sample I have an Entity Framework called FuseGenDBEntities so I will modify the code as below.

 

publicActionResult Index()

{

  FuseGenDBEntities context = newFuseGenDBEntities();

 

  var result = from r in context.Products select r;

 

  return View(result);

}

 

The error should gone if you test run it again.

 

You can also download a single solution from http://skydrive.live.com. The sample file name is MvcAppNGF.rar My MSN ID is chanmmn@hotmail.com.

About these ads

About chanmingman

Ming Man is a senior manager for a development company. With 20 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net and tagged . Bookmark the permalink.

One Response to Object reference not set to an instance of an object in MVC

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s