ServiceStack Routing does not work with querystring
I have a simple REST service built with ServiceStack. If I configure the routes like this: //register user-defined REST-ful urls Routes .Add<Contact>("/Contacts") .Add<Contact>("/Contacts/{ContactId}") This request succeeds. http://<server>:59557/Contacts?ContactId=9999 //Works If I configure the routes like this (Business Analyst prefers the generated metadata) //register user-defined REST-ful urls Routes .Add<UpdateContact>("/UpdateContact", "PUT") .Add<CreateContact>("/CreateContact", "POST") .Add<GetContact>("/Contacts/{ContactId}", "GET") http://<server>:59557/Contacts/9999 //Works http:/