Replies: 1 comment 2 replies
-
This does not exist, but I think can be easily added. Obviously it will only affect deserialization, so when serializing you will still have to supply correct property name. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I need something similar to this but deserializing a parquet,
var options = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true
};
var weatherForecast = JsonSerializer.Deserialize(jsonString, options);
Thank you very much
Beta Was this translation helpful? Give feedback.
All reactions