Eliminating magic strings in MVC with T4MVC
I recently discover a nuget package called T4MVC and it has become a must-have on my tool belt. T4MVC helps eliminating magic strings in MVC and support strongly typed ActionResults. See their project site here. In MVC, you have to use magic strings when specifying an action link. E.g. @Html.ActionLink(“View detail”, “Detail”, “Article”, new { id … [Read more…]