The Area controller is not hit. I have the following structure in ASP.MVC
--> Area
--> --> MyArea
--> --> --> Controllers
--> --> --> --> HomeController
--> --> --> Model
--> --> --> --> MyModel
--> --> --> Views
--> --> --> --> Home
--> --> --> --> --> Index
Controllers
--> HomeController
Views
--> Home
--> --> Index
When from root Controllers-HomeController "return View("~/Area/MyArea/Views/Home/Index.cshtml")"
is called then Area-MyArea-Controllers-HomeController-Index Action is never hit! and hence Area-MyArea-Model-MyModel is always null in Area-MyArea-Views-Home-Index. Any suggestions
There is little information to work with. The only thing i can ask from this point is, have you registered your Area? Like this: http://www.c-sharpcorner.com/UploadFile/ansh06031982/areas-in-mvc-with-example/