EntityFramework6.Npgsql
EntityFramework6.Npgsql copied to clipboard
Entity Framework 6 provider for PostgreSQL
Fix for https://github.com/npgsql/EntityFramework6.Npgsql/issues/10
Since Npgsql supports Redshift (see `Server Compatibility Mode` connection string parameter accepted values, which include `Redshift`), then `EntityFramework6.Npgsql` should support Redshift too. However, this is not the case. To reproduce,...
Fixes #154 Both unit tests appear to only call into the `IndexOf` case in SqlBaseGenerator.cs but all three occurrences of `position` were changed just to be safe.
When EntityFramework UseDatabaseNullSemantics == true or when using null propagation expressións (?? or ?) EntityFramework6 generates and expression tree with many nested CASE WHEN expressions. When this happens the generated...
@roji Follow up to #65. I'm not sure how to do inter-page linking. Let me know what needs to change.
Tested with Postgres 9.6.17 and EntityFramework6.Npgsql 6.3.0 The query `users.Where(u => u.FullName.Contains("aaron"));` will generate the SQL `"Extent1"."fullName" LIKE E'%aaron%'`, which functions as expected when `fullName` is citext. However, let's say...
I am getting the following error when trying to use the geometry or geography types: ``` Errors Found During Generation: warning 6005: The data type 'geometry' is currently not supported...
_From @jdcrutchley on February 20, 2015 21:42_ This only occurs if I've already run migrations and specify I want to create a full database creation script like so: ``` Database-Update...