我目前正在做以下工作:
var json = JsonConvert.SerializeObject(product);
return JsonConvert.DeserializeObject<Dictionary<string, string>>(json);
对象product
具有类型为TimeOnly
的对象。序列化部分可以工作,但反序列化会导致它崩溃。有什么想法吗?
提前谢谢。
https://github.com/JamesNK/Newtonsoft.Json/issues/2521
13.0.2测试版支持。System.Text.Json
支持它。