Skip to content

Ezeckiel2517/T4MVC

 
 

Repository files navigation

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("Delete Dinner", "Delete", "Dinners", new { id = Model.DinnerID }, null)

T4MVC lets you write

@Html.ActionLink("Delete Dinner", MVC.Dinners.Delete(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

Continuous Integration

Build status

About

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 96.5%
  • CSS 2.6%
  • Other 0.9%