"Property '{0}' does not exist on type '{1}'"

Hi there,

I’ve got an QueryDb call, that works fine. It logs these items by Log4net:

2017-03-15 16:36:25,881 WARN  [STP SmartThreadPool Thread #85] Property 'jsconfig' does not exist on type 'xxx.Dto.FindDataLogs'
2017-03-15 16:36:25,883 WARN  [STP SmartThreadPool Thread #87] Property 'workflowid' does not exist on type 'xxx.FindDataLogs'

One is jsconfig, servicestack default. The other is a property i filter on.
I see in StringMapTypeDeserializer there is a possibility to specify which properties to ignore. How can i add these to there ?

Regards,

I’ve just added “jsconfig” in this commit which will be pre-registered in next release.

Whilst you can add your own with:

SetConfig(new HostConfig {
    IgnoreWarningsOnPropertyNames  = { "workflowid" }
});