PartialUpdate ignores bool request property when set False (works when set True)

I noticed the solution to another question, and also making my RequestDto’s closed property nullable solved my problem: false and true values are handled correctly

public bool? Closed { get; init; }

2 Likes