Reputation: 1753
I wont to use entity framework to generate edmx from postgresql.
I tried to use this guide and it works fine, but I need to generate edmx and when I tried to create an edmx file, the Npgsql driver wasn't there.
Does anyone know a way to create a edmx file from postgresql with entity framework?
Or know about anther ORM for postgresql that can generate edmx like entity framework and you linq?
TNX
Upvotes: 1
Views: 3572
Reputation: 46
I had the same issue. I have solved it by installing the Npgsql PostgreSQL Integration extension for Visual Studio.
You can download it directly from Visual Studio Marketplace at this link: https://marketplace.visualstudio.com/items?itemName=RojanskyS.NpgsqlPostgreSQLIntegration
After installing it, I can now see the provider for PostgreSQL.
Upvotes: 3
Reputation: 135
I think you have to install provider for Postgres:
https://github.com/npgsql/npgsql/releases?after=v3.1.2
With this I have:
Upvotes: 1