![]() |
VOOZH | about |
dotnet add package Devart.Data.PostgreSql.EFCore --version 9.1.123.10
NuGet\Install-Package Devart.Data.PostgreSql.EFCore -Version 9.1.123.10
<PackageReference Include="Devart.Data.PostgreSql.EFCore" Version="9.1.123.10" />
<PackageVersion Include="Devart.Data.PostgreSql.EFCore" Version="9.1.123.10" />Directory.Packages.props
<PackageReference Include="Devart.Data.PostgreSql.EFCore" />Project file
paket add Devart.Data.PostgreSql.EFCore --version 9.1.123.10
#r "nuget: Devart.Data.PostgreSql.EFCore, 9.1.123.10"
#:package Devart.Data.PostgreSql.EFCore@9.1.123.10
#addin nuget:?package=Devart.Data.PostgreSql.EFCore&version=9.1.123.10Install as a Cake Addin
#tool nuget:?package=Devart.Data.PostgreSql.EFCore&version=9.1.123.10Install as a Cake Tool
dotConnect for PostgreSQL is a high-performance ORM enabled data provider for PostgreSQL that builds on ADO.NET technology.
The provider works with .NET Frameworks 2.0+, .NET Core 2.0+, .NET 5+. The product is compatible with ADO.NET Entity Framework (EF) Core.
It supports a wide range of PostgreSQL-specific features, such as secure SSL and SSH connections, PostgreSQL notifications, PostgreSQL bulk data loading, GEOMETRY, PostgreSQL ARRAY types, and others.
More information at dotConnect for PostgreSQL.
The following table show which version of this package to use with which version of frameworks.
| Frameworks | Version support |
|---|---|
| Entity Framework Core | 10 |
| .NET | 10 |
More information here
For projects, using Entity Framework Core 10 with PostgreSQL, install this package. Execute the following command in the Package Manager Console:
Install-Package Devart.Data.PostgreSql.EFCore
For projects that require integration with Entity Framework 6.4 (EF6), use the Devart.Data.PostgreSql.EF6 package.
There also are Visual Studio extensions for earlier Visual Studio versions. If you use some other tool than Visual Studio, you can get NuGet packages with the nuget.exe console tool.
dotConnect for PostgreSQL is available in several editions. See pricing options for ordering.
The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.
This snippet directly configures a PostgreSQL database connection for an Entity Framework Core DbContext using a connection string.
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
optionsBuilder.UsePostgreSql(@"UserId=postgres;Password=postgres;Host=127.0.0.1;Port=5432;Database=test;Schema=pg_catalog;");
}
}
Configuration Using PostgreSqlConnection Instance
using Devart.Data.PostgreSql;
...
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
var connection = new PostgreSqlConnection();
connection.Host = "127.0.0.1";
connection.Port = 5432;
connection.UserId = "postgres";
connection.Password = "postgres";
connection.Database = "test";
connection.Schema = "pg_catalog";
optionsBuilder.UsePostgreSql(connection);
}
}
Configuration File (appsettings.json):
{
"ConnectionStrings": {
"DefaultConnection": "UserId=postgres;Password=postgres;Host=127.0.0.1;Port=5432;Database=test;Schema=pg_catalog;"
}
}
DbContext Configuration:
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
IConfigurationBuilder builder = new ConfigurationBuilder().AddJsonFile("appsettings.json");
IConfiguration configuration = builder.Build();
optionsBuilder.UsePostgreSql(configuration.GetConnectionString("DefaultConnection"));
}
}
For more information about secure connections using SSL or SSH connections read at out documentation.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on Devart.Data.PostgreSql.EFCore:
| Package | Downloads |
|---|---|
|
Devart.Data.PostgreSql.EFCore.Design
dotConnect for PostgreSQL is a high-performance ORM enabled data provider for PostgreSQL that builds on ADO.NET technology. The provider works with .NET Frameworks 2.0+, .NET Core 1.0+, .NET 5+. It supports a wide range of PostgreSQL-specific features, such as secure SSL and SSH connections, PostgreSQL notifications, PostgreSQL bulk data loading, GEOMETRY, PostgreSQL ARRAY types, and others.a More information at https://www.devart.com/dotconnect/postgresql/ License dotConnect for PostgreSQL is available in several editions https://www.devart.com/dotconnect/postgresql/ordering.html The NuGet package initiates a 30-day free trial automatically, so no additional action is required. Key Features * Easy Connection: Allows your application to work with PostgreSQL. * ASP.NET Core: Supports ASP.NET Core Identity. * Performance: Uses many PostgreSQL-specific performance features & optimizations to ensure the highest performance. * Monitoring: Allows per-component tracing of database events with a free dbMonitor application. * Security: Supports various encryption ciphers, SSL and SSH connections, etc. * Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely. |
|
|
Devart.Data.PostgreSql.EFCore.NetTopologySuite
dotConnect for PostgreSQL is a high-performance ORM enabled data provider for PostgreSQL that builds on ADO.NET technology. The provider works with .NET Frameworks 2.0+, .NET Core 2.0+, .NET 5+. It supports a wide range of PostgreSQL-specific features, such as secure SSL and SSH connections, PostgreSQL notifications, PostgreSQL bulk data loading, GEOMETRY, PostgreSQL ARRAY types, and others.a More information at https://www.devart.com/dotconnect/postgresql/ License dotConnect for PostgreSQL is available in several editions https://www.devart.com/dotconnect/postgresql/ordering.html The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial. Key Features * Easy Connection: Allows your application to work with PostgreSQL. * ASP.NET Core: Supports ASP.NET Core Identity. * Performance: Uses many PostgreSQL-specific performance features & optimizations to ensure the highest performance. * Monitoring: Allows per-component tracing of database events with a free dbMonitor application. * Security: Supports various encryption ciphers, SSL and SSH connections, etc. * Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.1.123.10 | 22 | 6/17/2026 |
| 9.1.123.9 | 22 | 6/17/2026 |
| 9.1.123.8 | 26 | 6/17/2026 |
| 9.1.123.7 | 24 | 6/17/2026 |
| 9.1.123 | 24 | 6/17/2026 |
| 9.1.100.10 | 491 | 5/25/2026 |
| 9.1.100.9 | 375 | 5/25/2026 |
| 9.1.100.8 | 371 | 5/25/2026 |
| 9.1.100.7 | 379 | 5/25/2026 |
| 9.1.100 | 411 | 5/25/2026 |
| 9.1.72.10 | 705 | 4/23/2026 |
| 9.1.72.9 | 579 | 4/23/2026 |
| 9.1.72.8 | 565 | 4/23/2026 |
| 9.1.72.7 | 561 | 4/23/2026 |
| 9.1.72 | 607 | 4/23/2026 |
| 9.1.35.10 | 1,452 | 3/6/2026 |
| 9.1.35.9 | 1,447 | 3/6/2026 |
| 9.1.35.8 | 1,145 | 3/6/2026 |
| 9.1.35.7 | 1,155 | 3/6/2026 |
| 9.1.35 | 1,204 | 3/6/2026 |