本文介绍了.NET Core中的IServiceCollection中不提供UseNpgsql的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在Visual Studio 2017中具有.NET Core项目。我试图添加(Postgresql)数据库连接。这是一个代码:

I have .NET Core project in Visual Studio 2017. I am trying to add (Postgresql) database connection. Here is a code:

public void ConfigureServices(IServiceCollection services)
{
     services.AddMvc();

     services.AddDbContext<ConexionWebApi>(options => {
     options.UseNpgsql("ConnectionString", b => b.MigrationsAssembly("WebAPISample"));
     });

}

但是useNpgsql会产生以下错误:

But useNpgsql generates the following error:

我安装了以下NuGet软件包:

I installed the followings NuGet packages:

Microsoft.EntityFrameworkCore.Tools,    
Npgsql.EntityFrameworkCore.PostgreSQL,  
Npgsql.EntityFrameworkCore.PostgreSQL.Design.

我应该安装其他库吗?

推荐答案

我遇到了同样的问题。我通过使用Microsoft.EntityFrameworkCore添加

I had the same issue. I resolved it by adding

using Microsoft.EntityFrameworkCore;

这篇关于.NET Core中的IServiceCollection中不提供UseNpgsql的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 19:12