System.Text.Json serializes/deserialize nullable reference types to "{}" as opposed to "null"
Trying to convert an old ASP.NET Core project from Newtonsoft.Json to System.Text.Json but it changes the behavior of nullable reference type conversion. System.Text.Json serializes/deserialize nullable reference types to "{}" as opposed to "null". How do I fix it? I want…