Deserialize JSON, sometimes value is an array, sometimes "" (blank string).
- by karl.r
I am trying to deserialize a field:
"presenters":[{...},{...}]
but some of the rows come back with only:
"presenters":""
When the serializer gets to the row with that empty string I get:
Error converting value "" to type 'System.Collections.Generic.List`1[DataPrototype.Model.Presenter]'.
Am I right in thinking that I need a JsonConverter that will change the empty string into an empty List?