目前我必须将所有DbGeography类型设置为null,然后才能将其转换为Json。有没有办法为这种类型添加新的转换器?我知道我可以使用Json.Net并在模型中为DbGeography类型添加转换器,但我们不想使用Json.Net。
//Json converter fails to convert this.
deviceInfo.DeviceData.DeviceLocation = null;
return Json(deviceInfo);
我发现很难相信微软会让MVC的JsonResult无法扩展。