We should be allosed to use the {action} token when specifying routes so we do not have to repeat the method name everywhere...
Current:
[Route("SomeSuperAction/{id:int}")]
public virtual ActionResult SomeSuperAction(int id)
{
Proposed:
[Route("{action}/{id:int}")]
public virtual ActionResult SomeSuperAction(int id)
{