EntityFramework6.Npgsql icon indicating copy to clipboard operation
EntityFramework6.Npgsql copied to clipboard

Entity Framework 6 provider for PostgreSQL

Results 102 EntityFramework6.Npgsql issues
Sort by recently updated
recently updated
newest added

Hi! I have a many to many relationship between two entities. My controllers are generated with the controller generator and everything works fine except updating this relation. The query generated...

I get Error 6013 when I try to add a postgres view using the EF Designer (EF Designer from database). The view itself is just a SELECT \* of another...

Hi, Recently, I've updated all the references on a project, and I've deleted the reference Npgsql.EntityFramwork to include the new EntityFramework6.Npgsql. Making that, I've realized that when I was adding...

We have a database with citext columns and we need to generate an edml model. Unfortunately currently this isn't supported because "citext" is not mapped to String inside NpgsqlProviderManifest.Manifest.xml and...

I am using EntityFramework 6.1.3, EntityFramework6.Npgsql 3.1.1, Npgsql 3.2.0 When I use "update-database", the connected Postgres database gets updated properly. When I try to generate migration script using "update-database -script...

According to MSDN it is possible to specify multi column (unique) indexes using attributes. Hence I would expect them to be created accordingly during a migration. Unfortunately only the first...

Currently all functions that work on `MigrationOperation` are virtual so it's possible to override them. But in the end, all of them call `AddStatment` to actually register the migration statement...

Trying to setup a brand new project from scratch (for R&D purposes) I always fall in the [**3F000: schema "MySchema" does not exist**]. this is my Context: ```c# public class...

If I add-migration with a class that has a property of type System.Data.Entity.Spatial.DbGeometry then following error is returned: `Not supported edm type: Edm.Geometry` NuGet packages: - EntityFramework 6.1.3 - EntityFramework6.Npgsql...

I have console app which runs the code below to update migrations on my remote server. (This is a work around because I am not able to get "-script" to...