I'm trying to use T4MVC in my ASP.NET MVC4 application. I'm inserting it in my view as shown below:
@using (Ajax.BeginForm(MVC.Check.Lead(),
The Lead method takes an integer ID parameter which is supplied in the form itself. In the documentation T4MVC state that a parameter-less constructor should be auto generated however the compiler says that there isn't.
Why is it not generated?