We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control over the serialization casing looks like it is broken when using the new System.Text.Json in .NET core 3.1
#2216 says casing is controlled by the AddJsonOptions which prior to ASP.NET Core 3.1 the JSON.NET implementation.
When using the following (which utilizes System.Text.Json) the casing changes back to the default.
.AddJsonOptions(o => { //preserve poco casing o.JsonSerializerOptions.PropertyNamingPolicy = null; })
The expected result is that the casing of the .NET classes be maintained when this setting is used.
The text was updated successfully, but these errors were encountered:
Not possible st the moment, you need to describe the serializer with the neetondoft json settings
RicoSuter/NJsonSchema#1014
Sorry, something went wrong.
No branches or pull requests
Control over the serialization casing looks like it is broken when using the new System.Text.Json in .NET core 3.1
#2216 says casing is controlled by the AddJsonOptions which prior to ASP.NET Core 3.1 the JSON.NET implementation.
When using the following (which utilizes System.Text.Json) the casing changes back to the default.
The expected result is that the casing of the .NET classes be maintained when this setting is used.
The text was updated successfully, but these errors were encountered: