Is there a recommended way to use the new
nameof()
expression in ASP.NET MVC for controller names?
Url.Action("ActionName", "Home") <------ works
vs
Url.Action(nameof(ActionName), nameof(HomeController)) <----- doesn't work
obviously it doesn't work because of nameof(HomeController) converts to "HomeController" and what MVC needs is just "Home".
Consider an extension method:
Then you can use: