hiromatsu.hatenablog.com
JSON.NET から System.Text.JSONに移行時にハマった。
同じようにハマった人がいて助かった。
josef.codes
- System.Text.Json was used instead of Newtonsoft when modelbinding occurred
- We serialized the Dictionary
(created by System.Text.Json) with Newtonsoft
getter, setterでJSON.NETで処理している箇所があったの忘れてました。
まさしくコレ。。。。
{ "type": { "ValueKind": 3 }, "vmax": { "ValueKind": 4 }, "vmin": { "ValueKind": 4 } }
Thanks!