I\'m trying to work out how to do the routing for the following Web API controller:
public class MyController : ApiController { // POST api/MyController/GetA
The problem is your api/MyController/GetRowsOfType/userName/tableName/rowType URL will always match the first route so the second is never reached.
api/MyController/GetRowsOfType/userName/tableName/rowType
Simple fix, register your RowsByType route first.
RowsByType