I implemented this solution today and it fixed my issue, but only when dealing with simple objects (e.g., {...}), not arrays of simple objects (e.g., [{...},{...},{...},{...}]).
When passing only a simple object, my back-end .NET API is able to parse what I give it. When it's expecting an array or List<T> of simple objects, and I pass an array through this mechanism, it's not able to parse what I provide.
I implemented this solution today and it fixed my issue, but only when dealing with simple objects (e.g., {...}), not arrays of simple objects (e.g., [{...},{...},{...},{...}]).
When passing only a simple object, my back-end .NET API is able to parse what I give it. When it's expecting an array or List<T> of simple objects, and I pass an array through this mechanism, it's not able to parse what I provide.
Thanks!