ServiceStack Rest - Complex uri hierarchies
问题 I'm creating a rest webservice using the c# framework 'servicestack' (http://www.servicestack.net/) and I'm having issues trying to figure out how to support more complex rest hierarchies And I'm configuring various routes and it works perfectly Routes .Add<MerchantDto>("/merchants") .Add<MerchantDto>("/merchants/{id}") .Add<MerchantDto>("/merchantGroups/{merchantGroupId}/merchants") .Add<MerchantDto>("/merchantGroups/{merchantGroupId}/merchants/{id}") .Add<StoreDto>("/stores") .Add<StoreDto>