var a= new DateTime(2019,12,5,1,2,3,44);
a.ToString("O");
// Output: 2019-12-05T01:02:03.0440000
System.Text.Json.JsonSerializer.Serialize(a, typeof(DateTime));
// Output "2019-12-05T01:02:03.044"
Should in second case "O" format be used with "fffffff"?