Premium Only Content
Part 7 Models in an mvc application
In this video we will discuss models in an mvc application.
Let's understand models with an example. We want to retrieve an employee information from tblEmployee table and display it in a view.
To encapsulate Employee information, add Employee model class to the Models folder. To do this
1. Right click on "Models" folder - Add - Class
2. Name the class as Employee.cs
3. Click "Add"
Copy and paste the following code in Employee.cs class file.
public class Employee
{
public int EmployeeId { get; set; }
public string Name { get; set; }
public string Gender { get; set; }
public string City { get; set; }
}
Now let's Add EmployeeController class to "Controllers" folder. To do this
1. Right click on "Controllers" folder - Add - Controller
2. Use EmployeeController as the name
3. Click "Add"
We want to use "Employee" model class in EmployeeController. So copy and paste the following "using" statement in "EmployeeController.cs"
using MVCDemo.Models;
By default an Index() Action method is created in EmployeeController. Change the name of the function to Details(). Create an instance of Employee class. For now we will hard code Employee data in this class. In a later video session, we will discuss about retrieving employee information from the database table tblEmployee. At this point EmployeeController should look as shown below.
public ActionResult Details()
{
Employee employee = new Employee()
{
EmployeeId = 101,
Name = "John",
Gender = "Male",
City = "London"
};
return View();
}
Now, we need to pass the employee model object that we constructed in EmployeeController to a view, so the view can generate the HTML and send it to the requested client. To do this we first need to add a view. To add a view
1. Right click on Details() action method and select "Add View" from the context menu
2. Set
a)View Name = Details
b)View Engine = Razor
c)Select "Create strongly typed view" check box
d)From the "Model class" dropdownlist, select "Employee (MVCDemo.Models)"
Note: If Employee class is not visible in the dropdownlist, please build your project and then try adding the view again.
3. Finally click "Add"
At this point, Details.cshtml should be added to "Employee" folder. Please note that "Employee" folder is automatically created and added to "Views" folder.
At this point if you run the project, and if you navigate to the following URL, you get a runtime error stating - Object reference not set to an instance of an object.
localhost/MVCDemo/Employee/Details
To fix this error, pass "Employee" object to the view. The "return" statement in Details() action method need to be modified as shown below.
return View(employee);
That's it. Run the application and navigate to localhost/MVCDemo/Employee/Details. We should get the output as expected.
-
29:08
Adam Does Movies
15 hours ago $4.29 earnedTOP 10 MASSIVE MOVIE DISAPPOINTMENTS IN 2024!
27.3K4 -
6:47
Guns & Gadgets 2nd Amendment News
15 hours agoSelf Defense Case OVERTURNED
15K8 -
57:01
PMG
12 hours ago $3.00 earned"Hannah Faulkner and Dr. Bryan Ardis | Don't Fall For the Bird Flu!!!"
11.7K2 -
31:02
Bek Lover Podcast
14 hours agoCalifornia Gets A Wake Up Call & Other Strange News...
6.79K3 -
8:13
PerpetualHealthCo
20 hours agoCattle GHG & Hidden Technology?
7.55K6 -
54:41
CharLee Simons Presents Do Not Talk
1 month agoDO NOT TALK with SAM ANTHONY (YourNews.com) 12-9-24
23.6K1 -
4:57:03
Nobodies Gaming
15 hours ago $8.01 earnedNobodies Rumble Gaming TEST STREAM
60.5K6 -
59:49
The StoneZONE with Roger Stone
13 hours agoUpdate on Andrew & Tristan Tate w/ Lawyer Joe McBride +What will Trump do about J6ers? The StoneZONE
170K24 -
1:08:56
Man in America
17 hours ago🔴 LIVE: California Wildfires—APOCALYPTIC Warning or Globalist Land Grab?
86.4K110 -
1:30:04
Donald Trump Jr.
19 hours agoFires Rage Across LA, How Dems Destroyed the Golden state, Live with Alex Marlow, John Phillips, and Joe Bastardi | TRIGGERED Ep.206
171K418