Premium Only Content
Part 10 Working with multiple tables in mvc
In this video we will discuss working with 2 related tables in MVC
1. tblDepartment
2. tblEmployee
This is what we want to achieve
1. Display all the departments from tblDepartments table. The Department names should be rendered as hyperlinks.
2. On clicking the department name link, all the employees in the department should be displayed. The employee names should be rendered as hyperlinks.
3. On clicking the employee name link, the full details of the employee should be displayed.
4. A link should also be provided on the employee full details page to navigate back to Employee list page. Along the same lines, a link should also be provided on the employee list page to navigate back to Departments list page.
Implementing Departments List:
Step 1: Right click on the "Models" folder and add a class file with name=Department.cs. Copy and paste the following code.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations.Schema;
namespace MVCDemo.Models
{
[Table("tblDepartment")]
public class Department
{
public int ID { get; set; }
public string Name { get; set; }
public List[Employee] Employees { get; set; }
}
}
Step 2: Add "Departments" property to "EmployeeContext" class that is present in "EmployeeContext.cs" file in "Models" folder.
public class EmployeeContext : DbContext
{
public DbSet[Department] Departments { get; set; }
public DbSet[Employee] Employees { get; set; }
}
Step 3: Right click on the "Controllers" folder and add a Controller, with name=DepartmentController. Copy and paste the following code.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MVCDemo.Models;
namespace MVCDemo.Controllers
{
public class DepartmentController : Controller
{
public ActionResult Index()
{
EmployeeContext employeeContext = new EmployeeContext();
List[Department] departments = employeeContext.Departments.ToList();
return View(departments);
}
}
}
Step 4: Right click on the Index() action method in DepartmentController class and select "Add View" from the context menu. Set
View name = Index
View engine = Razor
Select "Create Strongly-typed view checkbox
Select Department class, from "Model class" dropdownlist
Click "Add" button
Copy and paste the following code in Index.cshtml view file in Department folder
@using MVCDemo.Models;
@model IEnumerable[Department]
[div style="font-family:Arial"]
@{
ViewBag.Title = "Departments List";
}
[h2]Departments List[/h2]
[ul]
@foreach (Department department in @Model)
{
[li]@Html.ActionLink(department.Name, "Index", "Employee",
new { departmentId = department.ID }, null)[/li]
}
[/ul]
[/div]
Changes to Employee List and Detail pages
Add "DepartmentId" propertu to "Employee" model class that is present in Employee.cs file in "Models" folder.
[Table("tblEmployee")]
public class Employee
{
public int EmployeeId { get; set; }
public string Name { get; set; }
public string Gender { get; set; }
public string City { get; set; }
public int DepartmentId { get; set; }
}
Add "departmentId" parameter to Index() action method in "EmployeeController" class that is present in "EmployeeController.cs" file in "Controllers" folder. Use the "departmentId" parameter to filter the list of employees as shown below.
public ActionResult Index(int departmentId)
{
EmployeeContext employeeContext = new EmployeeContext();
List[Employee] employees = employeeContext.Employees.Where(emp =] emp.DepartmentId == departmentId).ToList();
return View(employees);
}
Copy and paste the following line in "Index.cshtml" that is present in "Employee" folder in "Views" folder. With this change we are able to generate an action link to redirect the user to a different controller action method.
@Html.ActionLink("Back to Department List", "Index", "Department")
-
3:32:05
I_Came_With_Fire_Podcast
11 hours agoTRUMP GUILTY Verdict, LA Fires, New American EXPANSIONISM, and Cyber Truck Updates!!
18K8 -
1:26:05
Glenn Greenwald
8 hours agoGOP Senators Demand Tulsi Support Domestic Surveillance To Be Confirmed; Group Tracks IDF War Criminals Around The World; System Pupdate: Pointer's Determination To Survive | SYSTEM UPDATE #387
91.7K59 -
57:27
Flyover Conservatives
1 day agoHealthy People Are Ungovernable: The Secrets They Don’t Want YOU to Know - Tracy Beanz | FOC Show
44.1K4 -
8:36:11
Dr Disrespect
15 hours ago🔴LIVE - DR DISRESPECT - DELTA FORCE - INTENSE SITUATIONS ONLY!
241K27 -
4:01:30
Nerdrotic
11 hours ago $33.42 earnedHollywood National DISASTER! Studios Terrified, Star Wars FAIL | Friday Night Tights 336 w Raz0rfist
139K43 -
2:52:10
Edge of Wonder
11 hours agoLA Fires: Biblical Inferno as Hollywood Burned Down
43.4K12 -
12:35
China Uncensored
9 hours agoHas the Coverup Already Begun?
56.8K31 -
1:09:12
The Big Mig™
12 hours agoLet’s Talk Music “Karmageddon” w/ Iyah May
43.8K8 -
1:00:22
Sarah Westall
7 hours agoLoss of Confidence in the Medical System, Real Facts and Data w/ Dr. Michael Schwartz
44.9K5 -
55:08
LFA TV
1 day agoThe Cause of ‘Natural’ Disasters | TRUMPET DAILY 1.10.25 7pm
37.8K13