T4MVC is a T4 template that generates strongly typed helpers for ASP.NET MVC.


Keywords
mvc, t4, t4mvc
License
Apache-2.0
Install
Install-Package T4MVC -Version 4.2.5

Documentation

Build status

T4MVC is a T4 template for ASP.NET MVC apps that creates strongly typed helpers that eliminate the use of literal strings in many places.

e.g. instead of

@Html.ActionLink("Dinner Details", "Details", "Dinners", new { id = Model.DinnerID }, null)

T4MVC lets you write

@Html.ActionLink("Dinner Details", MVC.Dinners.Details(Model.DinnerID))

and that's just the beginning!

Use the following links to get started

T4MVC is part of the MvcContrib project, which is part of the Outercurve Foundation