EF6 + Postgres relation dbo.AspNetUsers does not exist

雨燕双飞 提交于 2020-01-12 19:44:40

问题


I have been following this post on using PostgreSQL with EF6 http://www.jasoncavett.com/blog/postgresql-and-entity-framework-6-code-first/.

I have started a brand new MVC5 project hoping to use Postgres in my application for backend. The application starts up fine however when you go to register a user (I selected individual authentication) I get the following error messsage

ERROR: 42P01: relation "public.AspNetUsers" does not exist

I am unsure as to how to resolve this problem.

The error happens on line 155 which can be seen here

More information can be provided if needed.


回答1:


I had ran the application before migrating to Postgres so all I needed to was to add a migration and update database through the package manager console.




回答2:


If you see this Error in 2018, the answer is because the table has not being added to the migrations.

dotnet ef migrations add 01_users && dotnet ef database update




回答3:


It is interesting but when i write as below it works on tableplus;

select *
from "AspNetUsers";

or

select "UserName"
from "AspNetUsers";


来源:https://stackoverflow.com/questions/30550410/ef6-postgres-relation-dbo-aspnetusers-does-not-exist

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!