c# – 在使用MVC 6的Web API中找不到IServiceCollection

前端之家收集整理的这篇文章主要介绍了c# – 在使用MVC 6的Web API中找不到IServiceCollection前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用带有MVC 6的Web API,这里我是为了将存储库注入控制器,我们需要将它注册到DI容器.打开Startup.cs文件.

在ConfigureServices方法中,将添加突出显示代码

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Owin;
using Owin;
using TodoApi.Models;

[assembly: OwinStartup(typeof(TodoApi.Startup))]

namespace TodoApi
{
    public partial class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            ConfigureAuth(app);
        }

        public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvc();
            // Add our repository type
            services.AddSingleton<ITodoRepository,TodoRepository>();
        }
    }
}

显示错误……

The type or namespace name ‘IServiceCollection’ could not be found (are you missing a using directive or an assembly reference?)

解决方法

添加对Microsoft.Extensions.DependencyInjection NuGet包的引用,然后我建议执行 this链接中的解释.
原文链接:https://www.f2er.com/csharp/101088.html

猜你在找的C#相关文章