我有以下代码:
var resultData = new { d = sqlObject.ToArray() };
ContentResult result = new ContentResult();
result.Content = serializer.Serialize(resultData);
result.ContentType = "application/json";
return result;
但是他们一直提示无法找到类型或命名空间名称。你错过了指令或装配吗?
有任何解决方案吗? 我正在开发asp.net
答案 0 :(得分:0)
在项目中安装Microsoft.AspNet.Mvc
程序包。