Closed
Description
Is this enforced for any reason?
I have a particular case where I do not want to start the url with a '/'
For instance, take this generic Get:
[Get("({key})")]
Task<T> Get(TKey key);
My base address is something like:
mysite.com/contacts
And I would like the attribute to simply append an id in brackets (123-456-789), resulting in:
mysite.com/contacts(123-456-789)
Any way to hack around this?