EF6 + Postgres relation dbo.AspNetUsers does not exist EF6 + Postgres relation dbo.AspNetUsers does not exist postgresql postgresql

EF6 + Postgres relation dbo.AspNetUsers does not exist


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.


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


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

select *from "AspNetUsers";

or

select "UserName"from "AspNetUsers";