ContentResult指令或程序集丢失

本文关键字:程序集 指令 ContentResult | 更新日期: 2023-09-27 18:01:09

我有以下代码:

            var resultData = new { d = sqlObject.ToArray() };
            ContentResult result = new ContentResult();
            result.Content = serializer.Serialize(resultData);
            result.ContentType = "application/json";
            return result;

但它们不断提示找不到类型或命名空间名称。是否缺少指令或程序集。

有什么解决方案吗?我正在asp.net上开发

ContentResult指令或程序集丢失

从NuGet package Manager在项目中安装Microsoft.AspNet.Mvc包。