xxxxプログラマのメモ

先人に感謝と敬意:自分の困ったこと調べたことのメモ

JSON.NET to System.Text.JSON #"ValueKind": 3

hiromatsu.hatenablog.com
JSON.NET から System.Text.JSONに移行時にハマった。

同じようにハマった人がいて助かった。
josef.codes

  1. System.Text.Json was used instead of Newtonsoft when modelbinding occurred
  2. 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!