// GET: Cust public ActionResult Index() { //index file DemoContext context = HttpContext.RequestServices.GetService(typeof(DemoContext)) as DemoContext; return(View(context.GetCustomers())); }