- 
                Notifications
    You must be signed in to change notification settings 
- Fork 4
Description
AmbiguousActionException: Multiple actions matched. The following actions matched route data and had all constraints satisfied:
MyProject.WebApp.Controllers.HomeController.Index (MyProject.WebApp)
MyProject.WebApp.Areas.Admin.Controllers.HomeController.Index (MyProject.WebApp)
I am issuing this problem when i am using areas... i.e. admin and identity area on this project...
so far, my routes look like this
routes.MapRoute(
name: "areaRoute",
template: "{area}/{controller=Home}/{action=Index}/{id?}");
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}",
defaults: new { culture = LocalizationRouteDataHandler.DefaultCulture }
);
This was working before i put your code in place...
Do you have any suggestions?
thanks in advance