Open
Description
openedon Nov 25, 2021
When using
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("age")]
public int? Age { get; set; }
This still will create null when saving data in Cosmos Db
{
"age" : null
}
or is there anyway to prevent this ?
This issue tracker is for documentation
For product issues, use https://github.com/aspnet/EntityFramework/issues
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment