I am currently using the standard routing config and T4MVC for my ActionLinks like so:
routes.MapRoute("Default",
"{controller}/{action}",
new { controller = "Home", action = "Index", id = "" },
new[] { "HM.Web.Controllers.Home" }
);
@Html.ActionLink("Login", MVC.Login.Index())
But now I would like to move to attribute routing in MVC 5, from initial tests it doesn't look as if T4MVC will pickup my attribute routes and falls back to using the default route.
Is there a way to get T4MVC to work with attribute routing? and if not is there an alternative to get strongly typed action link?