EntityFramework6.Npgsql
EntityFramework6.Npgsql copied to clipboard
Entity Framework 6 provider for PostgreSQL
Using .NET Framework 4.7, Entity Framework 6, Npgsql, EntityFramework6.Npgsql, Npgsql Integration extension in VS2019. After adding a table from our Postgres database, the table shows up within the model along...
After upgrading the npgsql package to version 6.0.0, EF6 migrations to postgresql 12 are not applied. When downgrading to version 5.0.11, the problem does not occur. Trace stack when applying...
Hi, Thanks for the project, it is awesome. As we are still stuck with EF6, I stumbled upon the same problem as in issue #180 while using Postgres in a...
I'm writing an application that's in the process of migrating to .NET 5 / Core / EF Core. However as most of the projects are targeting .NET Framework, this change...
### The issue If we add SetTransactionHandler method in a derived class of DbConfiguration, it fails at SaveChanges method. Expected: A table named __TransactionHistory is created in PostgreSQL database, a...
Hi, is it possible to make case insensitive linq like `customers.Where(c=>c.Name.Contains("john"))` to find "John", "Saint-john",... without using .ToLower() / ToUpper()? In .NET Core version exists `EF.Functions.ILike`. Thanks, Zdenek
Since version 3.1.1 the default value is not generated in the database. images for comparison: v 3.1.1:  v 3.2.1.1:  code: ``` using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using...
This should be full fix for test also. Both AlterColumnOperation, CreateTableOperation and AddColumnOpreation are consistent now, along with their tests. Old pull request is closed by mistake, So I've created...
**SUMMARY:** I did a query in pgAdmin and it worked, but using the same query in C# using ```FromSqlRaw``` now returns a cast error. **DETAILS:** I'm currently working on a...
I've been maintaining Npgsql for a long time now: the [ADO.NET provider](http://github.com/npgsql/npgsql), the [Entity Framework Core provider](https://github.com/npgsql/Npgsql.EntityFrameworkCore.PostgreSQL) and the [Entity Framework 6.x provider](https://github.com/npgsql/EntityFramework6.Npgsql). As EF 6.x users have noticed, this...