When migrating to .Net Core 3 I've had to switch the JSON serialiser back to Newtonsoft.
Main issues with switching were:
- Variables (not properties) are not serialised
- In
BadRequestDto there is a custom converter being used (DictionaryKeysCamelCaseConverter).
There may be more, but I stopped looking.
I don't think there is a real need for Newtonsoft.Json though, it just needs to be migrated to.
When migrating to .Net Core 3 I've had to switch the JSON serialiser back to Newtonsoft.
Main issues with switching were:
BadRequestDtothere is a custom converter being used (DictionaryKeysCamelCaseConverter).There may be more, but I stopped looking.
I don't think there is a real need for Newtonsoft.Json though, it just needs to be migrated to.