c# – “ASP.NET Core 1.0 RC2中找不到”类型或命名空间名称“

前端之家收集整理的这篇文章主要介绍了c# – “ASP.NET Core 1.0 RC2中找不到”类型或命名空间名称“前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在尝试ASP.NET Core 1.0 RC2.我已将其创建为.NET Framework项目(而不是.NET Core项目),并使用.NET Framework 4.5通过项目引用添加了对Models库的引用:
"frameworks": {
  "net46": {
    "dependencies": {
      "Project.Core": {
        "target": "project"
      },"Project.DataAccess": {
        "target": "project"
      },"Project.Encryption": {
        "target": "project"
      },"Project.Models": {
        "target": "project"
      },"Project.Resources": {
        "target": "project"
      }
    }
  }
},

现在,在我的视图中添加模型指令时,会发生以下错误

@model System.Collections.Generic.List<Project.Models.User>

The type or namespace name 'Project' could not be found (are you missing a using directive or an assembly reference?)
    public class _Views_Home_Index_cshtml : Microsoft.AspNetCore.Mvc.Razor.RazorPage<System.Collections.Generic.List<Project.Models.User>>
The type or namespace name 'Project' could not be found (are you missing a using directive or an assembly reference?)
        public Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<System.Collections.Generic.List<Project.Models.User>> Html { get; private set; }

它还显示在intellisense中:无法解析标签’Project.Models.User’并且无法解析符号’model’

添加了一个项目引用,添加了一个using语句……仍然会发生此错误.这是为什么?

解决方法

这是RC2 with an open issue中的一个错误.问题讨论中的 workaround对我有用:
services.AddMvc()
.AddRazorOptions(options =>
{
    var prevIoUs = options.CompilationCallback;
    options.CompilationCallback = context =>
    {
        prevIoUs?.Invoke(context);
        context.Compilation = context.Compilation.AddReferences(MetadataReference.CreateFromFile(typeof(MyClass).Assembly.Location));
    };
    });

在您的示例中,您需要为Project.Models.User执行此操作.

不确定是否4.6.1 and Update 2 is needed for both projects,我只是尝试过.

原文链接:https://www.f2er.com/netcore/244975.html

猜你在找的.NET Core相关文章