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

_From @raditch on October 20, 2015 10:26_ Maybe to fix it NpgsqlMigrationSqlGenerator can call create extension "uuid-ossp" somewhere after create schema? Minimal test to reproduce: ``` public class Foo {...

bug

_From @tryhp3 on March 18, 2015 10:42_ I think that TimeStampTZ DateTimeOffset does not always work. I have simple enttity: ``` public class Customer { [Key] [Required] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int...

Issue with EntityFramework6.Npgsql for .net 4.8 framework. I am trying to import views from postgres env, we are getting error of PrimaryKey not found in views, however primary keys are...

### Steps to reproduce 1.- Create new Class Library project 2.- Create new ADO.NET Database First EDO connected to a Postgres 14.6 database through NPGSQL 3.- Update model from database...

Hello, We try to migrate from MSSQL to Postgresql on our EntityFramework 6 code first application. We have migrate a ByteArray rowversion field in MSSQL to the xmin field mapped...

1. Some server instances / provider versions return additional in server version string, which must be removed in order for server version to be serializable with "Version" class. 2. Removed...

We encounter a problem inserting a record into a PostgreSQL database via EF 6.4 - only when running a project in Poland. We do not get the error in the...

I need help, please ! ``` // DbContext DadosContexto db = new DadosContexto(); //Model Usuario model = new Usuario() { usu_cod = "LUAN"}; Usuario user = db.Usuarios.FirstOrDefault(u => (!string.IsNullOrEmpty(model.usu_nom) &&...

_From @nathan-alden on June 9, 2015 15:59_ I have a sample project that reproduces the issue. First, information about my environment: - PostgreSQL 9.4 running on Ubuntu 14.04.2 LTS -...

Npgsql Team, I have developed the Web APIs in our project thru C# for .NET Core. I am using the Entity Framework Core (EFCore) with Database-First approach for database access....