I have a small MVC 3 app - bit of a demo ground. I have one area and thats been working fine.
I have just added another area expecting to just spin up the app and it wor
I ran into this when I moved a controller into an Area but forgot to update the namespace. The controller name is scoped to the Area's namespace. So "Some" in "Area" will map to App.Areas.Area.Controllers.SomeController, which didn't exist.