I am currently doing the following:
var json = JsonConvert.SerializeObject(product);
return JsonConvert.DeserializeObject<Dictionary<string, string>>(json);
The object product has objects of type TimeOnly. The serialize part works but the deserialize causes it to crash. Any ideas?
Thanks in advance.