Action method looks like
public virtual ActionResult Show(int productId, bool isValid, bool getByStoreId = false)
When I call this action I get url like
.../Product/Show/221?isValid=True&getByStoreId=True
But I want to display just
.../Product/Show/221
Does T4MVC has some shortcut for this?
routes.MapRoute(
"ProductsShow_Default",
"Product/{action}/{articleId}",
MVC.Product.Show()
);