I had the following Action:
public ActionResult GetCityObjects(string cityAlias)
By some reasons I added a custom ModelBinder:
public ActionResult GetCityObjects(City city)
Now I want to make T4MVC add "cityAlias" parameter with value city.Alias when I pass city parameter to appropriate T4MVC method. Is there any way to achieve it?