So I have a question about how the implicitconvention is used from the client.
I can all day long call the get using %Ids from a browser in the url but if I needed to call that using the json client how would that work if I have an explicit query class?
example:
public class TestClass : QueryDb<Item>
{
public int Id {get;set;}
public string Name {get;set;}
}
client.Get<Item>(new TestClass());