Npgsql 2.2.0

Npgsql is a .Net data provider for Postgresql. It allows any program developed for .Net framework to access database server. It is implemented in 100% C# code. Postgresql 9.x and above is officially supported.

Showing the top 20 packages that depend on Npgsql.

Packages Downloads
Npgsql.EntityFrameworkCore.PostgreSQL
Npgsql.EntityFrameworkCore.PostgreSQL
3,467
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
49
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
59
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
868
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
1,603
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
4,828
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
9,673
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
13,915
Npgsql.EntityFrameworkCore.PostgreSQL.Design
Npgsql.EntityFrameworkCore.PostgreSQL.Design
3,456
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
45
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
47
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
50
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
52
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
54
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
55
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
56

This is Npgsql 2.2.0 Final Release (https://github.com/npgsql/Npgsql/releases/tag/v2.2.0) This release contains 249 commits since the last stable release. Includes bug fixes, improvements and new features. Update notice: If you have been using Npgsql 2.2.0-rc2, you don't need to update to this version. They are the same except for the Assembly version information. Major highlights ================ Visual Studio DDEX support ========================== Kenji Uno added support for DDEX. Now you can use Npgsql with Visual Studio data designer. This is a missing feature a lot of our users requested in the past. Kenji added a tutorial about how to use Npgsql with DDEX. You can find it here: https://github.com/npgsql/Npgsql/wiki/Visual-Studio-Design-Time-Support---DDEX-Provider#install-npgsqlddexprovidervsix Entity Framework David Karlaš added support for EFMigration and Database creation in EF6+. Now it is possible to start Code First projects without needing to create a database upfront. EntityFramework and Npgsql will take care of it. Emil Lenngren added support for a lot of missing features of EntityFramework. A list containing fixes from David and Emil as well as others for EntityFramework can be seen here: https://github.com/npgsql/Npgsql/issues?direction=desc&labels=entity+framework&milestone=2&page=1&sort=created&state=closed SSLStream support ================= In this release, SSLStream is on by default. If you want to use Mono.Security, you will need to use the following line in your code: NpgsqlConnection.UseSslStream = false; Note that in future releases, this option may not be available anymore as we are removing the dependency on Mono.Security assembly. Let us know in the forums if you have any problem with ssl when using SSLStream. This will help us check if we will be able to remove Mono.Security assembly. Added support for JSON, JSONB and HSTORE datatypes ================================================== Shay added support for those datatypes. Added GSSAPI support on Windows =============================== Brian Crowell added support for GSSAPI on windows. Now it is easier to use Active Directory when authenticating users. Removed support for protocol v2 =============================== Postgresql versions which use only protocol 2 are very old and don't receive support from postgresql group anymore. By removing support for protocol version 2, we removed a lot of code and can focus on functionalities provided by protocol 3. Removed support for Postgresql 8.4 and below In this thread, we talked about making Npgsql support the officially supported postgresql versions. we talked about making Npgsql support the officially supported postgresql versions. Postgresql has a table of officially supported versions and we decided to follow this table to guide us which postgresql version we will have support to. This doesn't necessarily mean that Npgsql won't work on unsupported versions. It may work if we don't add any SQL or unsupported feature. For example, today Npgsql 2.2 works only on Postgresql 8.2 and above because we added server side support for command timeout handling and some other queries which aren't supported on earlier versions. If you are using earlier postgresql versions, please, use an older version of Npgsql. We are creating a compatibility table to show which Postgresql version Npgsql works with. Fixed bugs: =========== [#91] Support for EFMigration and Database creation [#152] NpgsqlInterval different constructors different ToString [#158] NpgsqlCommand.Dispose() should execute "DEALLOCATE " for a prepared command [#177] XML data type doesn't seem to be quoting parameters properly on insert [#179] NpgsqlCommandBuilder automatic sql commands configuration [#188] Buffer too small problem in NpgsqlCopySerializer [#201] Dynamic type parameters: Cannot cast System.Int32 into any valid DbType after upgrading from 2.0.14.3 to 2.1.2.0 [#208] ObjectDisposeException [#217] Impossible to insert a Double.NaN value [#219] [#1011005] using 2 NpgsqlCopyIn at the same time [#223] HasRows property's bug [#231] NpgsqlParameterCollection.Clear() doesn't reset NpgsqlParameter.Collection [#225] Handle IEnumerable parameter [#233] Cannot insert to tables which have only one column [#246] Take followed by Skip is generated incorrectly in Entity Framework [#262] FirstOrDefault() on navigation property subquery throws “Not Implemented” Exception [#264] Mono.Security is outdated [#269] Fix 's' value mapped to the 'a' byte [#280] Bad SQL produced when selecting a field that was also used in the orderBy of a let subquery [#287] Fix operator handling and date functions for EF [#296] parameter parsing fails (regression) and duplicate [#240] NpgSqlCommand does not substitute parameters when there is a string with escaped apostrophe [#315] Fix query parameter processing to more correctly match PostgreSQL's lexer A list of the issues and pull requests merged for this release can be found at github here: https://github.com/npgsql/Npgsql/issues?direction=desc&milestone=2&page=1&sort=created&state=closed Known Issues ============ There are some issues we are working for the next maintenance release 2.2.1. You can check which issues we are working on here: https://github.com/npgsql/Npgsql/issues?q=milestone%3A2.2.1 Thanks ====== I'd like to give a special thanks to Kenji Uno for his excellent work with Npgsql DDEX support. DDEX support was one of the biggest missing features of Npgsql. I'd like to thank Emil Lenngren for all his work with Entity Framework improvements and insightful comments, David Karlaš for his help with Entity Framework support. Shay Rojansky, Glen Parker and Josh Cooley for all contributions and comments, and a big thanks to all the other contributors who helped us to make this release. List of contributors for this release ===================================== Kenji Uno Shay Rojansky Glen Parker Emil Lenngren David Karlaš Brian Crowell danzel Tuan Nguyen windcloud asgeirh Frans Bouma Jaspalsinh Chauhan Josh Cooley Martin Willey Francisco Figueiredo Jr. shankbond Javier Torres Kevin Pullin Michael de Lang Oskar Gewalli Sunny Ahuwanya Thomas Radioyes javitonino mw samy

This package has no dependencies.

Version Downloads Last updated
8.0.2 7 02/16/2024
8.0.1 5 12/05/2023
8.0.0 4 11/21/2023
8.0.0-rc.2 7 10/13/2023
8.0.0-preview.4 13 05/31/2023
8.0.0-preview.3 29 05/09/2023
8.0.0-preview.2 19 04/04/2023
8.0.0-preview.1 15 04/04/2023
7.0.6 5 09/25/2023
7.0.4 17 06/07/2023
7.0.2 14 04/04/2023
7.0.1 11 01/15/2023
7.0.0 1,566 11/15/2022
7.0.0-rc.2 59 12/01/2022
7.0.0-rc.1 30 09/22/2022
7.0.0-preview.7 17 09/04/2022
7.0.0-preview.6 57 07/30/2022
7.0.0-preview.5 50 09/08/2022
7.0.0-preview.4 24 09/07/2022
7.0.0-preview.3 12 09/08/2022
7.0.0-preview.2 48 09/02/2022
7.0.0-preview.1 7 09/07/2022
6.0.10 4 09/27/2023
6.0.9 15 04/04/2023
6.0.8 4,825 01/15/2023
6.0.7 13,381 09/21/2022
6.0.6 44 09/03/2022
6.0.5 19 08/21/2022
6.0.4 48 08/25/2022
6.0.3 155 06/28/2022
6.0.2 26 09/02/2022
6.0.1 41 08/21/2022
6.0.0 30 09/03/2022
6.0.0-rc.2 52 08/25/2022
6.0.0-rc.1 25 08/23/2022
6.0.0-preview7 26 09/05/2022
6.0.0-preview6 44 08/24/2022
6.0.0-preview5 20 08/04/2022
6.0.0-preview4 35 08/24/2022
6.0.0-preview3 9 08/22/2022
6.0.0-preview2 37 08/25/2022
5.0.17 6 09/23/2023
5.0.16 22 04/04/2023
5.0.15 27 09/22/2022
5.0.14 64 08/24/2022
5.0.13 10 09/08/2022
5.0.12 29 09/02/2022
5.0.11 15 09/02/2022
5.0.10 9,605 06/27/2022
5.0.7 12 09/09/2022
5.0.5 30 09/07/2022
5.0.4 40 08/23/2022
5.0.3 40 09/03/2022
5.0.2 13 09/09/2022
5.0.1.1 44 09/08/2022
5.0.0 54 08/02/2022
4.1.12 20 08/23/2022
4.1.11 18 09/09/2022
4.1.10 29 08/27/2022
4.1.9 24 09/10/2022
4.1.8 52 08/22/2022
4.1.7 19 09/02/2022
4.1.6 13 09/07/2022
4.1.5 45 09/08/2022
4.1.4 24 09/03/2022
4.1.3.1 9 09/07/2022
4.1.3 59 09/09/2022
4.1.2 30 09/09/2022
4.1.1 40 09/03/2022
4.1.0 37 08/26/2022
4.0.13 30 08/23/2022
4.0.12 30 09/09/2022
4.0.11 24 09/02/2022
4.0.10 45 09/09/2022
4.0.9 24 09/02/2022
4.0.8 16 08/21/2022
4.0.7 40 09/03/2022
4.0.6 18 09/02/2022
4.0.5 22 08/22/2022
4.0.4 17 09/02/2022
4.0.3 50 09/07/2022
4.0.2 46 09/09/2022
4.0.1 56 09/02/2022
4.0.0 56 08/20/2022
4.0.0-rc1 12 09/07/2022
4.0.0-preview2 22 08/24/2022
4.0.0-preview1 21 09/02/2022
3.2.7 22 06/29/2022
3.2.6 25 07/02/2022
3.2.5 35 09/07/2022
3.2.4.1 10 07/31/2022
3.2.4 20 08/22/2022
3.2.3 37 07/05/2022
3.2.2 15 08/24/2022
3.2.1 23 09/08/2022
3.2.0 53 09/02/2022
3.1.10 45 09/07/2022
3.1.9 3,460 06/27/2022
3.1.8 11 09/08/2022
3.1.7 24 08/15/2022
3.1.6 15 09/04/2022
3.1.5 18 09/06/2022
3.1.4 9 09/08/2022
3.1.3 34 07/31/2022
3.1.2 61 09/08/2022
3.1.1 48 08/23/2022
3.1.0 59 08/23/2022
3.0.8 22 09/08/2022
3.0.7 46 08/24/2022
3.0.6 48 07/31/2022
3.0.5 14 09/03/2022
3.0.4 21 07/11/2022
3.0.3 27 08/21/2022
3.0.2 41 09/07/2022
3.0.1 28 08/26/2022
3.0.0 18 08/22/2022
2.2.7 41 09/02/2022
2.2.6 12 07/01/2022
2.2.5 12 08/27/2022
2.2.4.3 15 08/24/2022
2.2.4.1 17 09/09/2022
2.2.3 25 09/08/2022
2.2.2 22 09/09/2022
2.2.1 11 08/21/2022
2.2.0 22 08/22/2022
2.1.3 24 09/08/2022
2.1.2 40 07/13/2022
2.1.1 28 08/24/2022
2.1.0 65 09/10/2022
2.0.14.3 41 09/02/2022
2.0.12.1 22 08/24/2022
2.0.11 40 08/26/2022