在没有Json.Net的MVC中将DbGeography序列化为Json

时间:2014-09-24 00:17:05

标签: asp.net-mvc json

目前我必须将所有DbGeography类型设置为null,然后才能将其转换为Json。有没有办法为这种类型添加新的转换器?我知道我可以使用Json.Net并在模型中为DbGeography类型添加转换器,但我们不想使用Json.Net。

        //Json converter fails to convert this. 
        deviceInfo.DeviceData.DeviceLocation = null;

        return Json(deviceInfo);

我发现很难相信微软会让MVC的JsonResult无法扩展。

0 个答案:

没有答案