I have a service which uses autoquery and has a response dto which looks like this
[DataContract(Name = "list_item", Namespace = "")]
public class ListItem
{
[DataMember(Name = "list_id",)]
public String ListId { get; set; }
[DataMember(Name = "first_name")]
public String FirstName { get; set; }
}
when I use autoquery without spaces it returns the correct result, but with spaces the autoquery doesnt work http://localhost/search?listid=12345
In the apphost.cs I added the following code
private void ConfigSerializer(Container container)
{
JsConfig.PropertyConvention = PropertyConvention.Lenient;
JsConfig.EmitLowercaseUnderscoreNames = true;
}
But still I cannot get the results when I use the underscore. What am I missing?
This AutoQuery test shows AutoQuery supporting a Request DTO with custom alias fields as seen in this AutoQuery Service:
Which can be called with this test:
ServiceStack has also been updated to look at any matching any aliases on the underlying table so now you can use field conventions on the query table, e.g:
It also supports implicit mapping using the
JsConfig.EmitLowercaseUnderscoreNames
convention, e.g:These changes are available from v4.0.41+ that's now available on MyGet.