I used T4MVC version 3.16.0
and I have method like this :
public async virtual Task<JsonResult> Read([ModelBinder(typeof(DataTablesBinder))] IDataTablesRequest requestModel)
{
//call async method here
}
I run T4MVC.tt
but when I call that method like this:
@Url.Action(MVC.admin.News.Read())
I get compiler error like that:
No overload for method in T4MVC
I use Visual Studio 2013 and ASP.NET MVC 5.2
What is wrong ?