Vijay Ganesh
Areas/{area name}/Views/{controller}
path. So I guess you are better of placing your Controllers also in Areas/{area name}/Controller
folder for better organizing them
|
|
{action}
token from the route template, your Controllers can still respond to Action names corresponding to the Request method (GET, POST, UPDATE…). So, this neatly ties up the merger of MVC Controllers and WebAPI Controllers
|
|
So, overall seems to be a nice upgrade.
Do check out Getting started with MVC 6 for a more elaborate look into the features.