我有以下代码:
var resultData = new { d = sqlObject.ToArray() };
ContentResult result = new ContentResult();
result.Content = serializer.Serialize(resultData);
result.ContentType = "application/json";
return result;
但是他们一直提示找不到类型或命名空间名称。您是否缺少指令或程序集。
有什么解决办法吗?我在 asp.net 上开发