数据库
首页 > 数据库> > c#-无法在NET Core中使用EF更新数据库

c#-无法在NET Core中使用EF更新数据库

作者:互联网

我正在使用PostgreSQL数据库和Entity Framework的NpgSQL包.我对模型进行了一些更改,现在正尝试迁移数据库.但是,输入后:

PM> Update-Database -verbose

我得到:

Using framework 'netcoreapp1.0'
Using data directory 'D:\GIT\foo\Foo\src\Foo.WebApp\.\bin\Debug\netcoreapp1.0'
Build started...
Build failed.

我有found in a github thread,应该使用dotnet构建来发现构建错误.但是,构建成功.还有其他方法可以解决导致数据库无法更新的问题吗?

解决方法:

我遇到了同样的问题,但只是切换到命令行,一切正常. (我仍然无法在Package Manager Console中解释该错误.)

从Windows PowerShell:

PS C:\{Proj folder}> dotnet ef database update

标签:net-core,postgresql,c,entity-framework
来源: https://codeday.me/bug/20191118/2024812.html