I am creating my first ServiceStack application. I think it is great but find that I have limited flexibility in the naming of methods in the Services. An example of this is I wanted to name this method GetChannels(AllChannels) but the route was not created as seen in the metadata page. I found it did work if I named it
public object Get(AllChannels request)
Do these methods have to be named by the Verb that will call it? I am doing my routing in AppHost in the Configure().
Am I missing something? Is there a way for the route to specify the method to call?