Why no constant strings in T4MVC generated code? My guess would be compilation-time copying of constant values...
But adding constants to the generated code would allow T4MVC generated stuff to be used in attributes.
I think about something like this:
insert @line 400:
public const String ControllerNameCONST = @"<#=controller.ClassName #>";
insert @line 445:
[<#= GeneratedCode #>, DebuggerNonUserCode]
public static class ActionNamesCONST {
<#foreach (var method in controller.ActionMethodsWithUniqueNames) { #>
<# if (UseLowercaseRoutes) { #>
public const string <#=method.ActionName #> = (<#=method.ActionNameValueExpression #>).ToLowerInvariant();
<# } else { #>
public const string <#=method.ActionName #> = <#=method.ActionNameValueExpression #>;
<# }
} #>
}
So someone could use it like this:
[SomeAttribute(HomeController.ControllerNameCONST)]
//instead of
[SomeAttribute("Home")]
//or
[SomeAttribute(HomeController.ActionNamesCONST.SomeAction)]
//instead of
[SomeAttribute("SomeAction")]
Edit: used it as an autocomplete attribute on a model, so the "target" controller and action can be specified on the model. Although could rework the autocomplete attribute to take an ActionResult as parameter instead of controller+action names...