using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using CRUD_OperationsInMVC.Models; namespace CRUD_OperationsInMVC.Controllers { public class EmployeeController : Controller { // GET: Employee public ActionResult Index() { EmployeeDBContext dbContext = new EmployeeDBContext(); List empList = dbContext.Employees.ToList(); return View(empList); } } }