Npgsql.EntityFrameworkCore.PostgreSQL 7.0.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 7.0.4
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 7.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql.EntityFrameworkCore.PostgreSQL --version 7.0.4
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL, 7.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Npgsql.EntityFrameworkCore.PostgreSQL as a Cake Addin
#addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL&version=7.0.4

// Install Npgsql.EntityFrameworkCore.PostgreSQL as a Cake Tool
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL&version=7.0.4

Npgsql Entity Framework Core provider for PostgreSQL

Npgsql.EntityFrameworkCore.PostgreSQL is the open source EF Core provider for PostgreSQL. It allows you to interact with PostgreSQL via the most widely-used .NET O/RM from Microsoft, and use familiar LINQ syntax to express queries. It's built on top of Npgsql.

The provider looks and feels just like any other Entity Framework Core provider. Here's a quick sample to get you started:

await using var ctx = new BlogContext();
await ctx.Database.EnsureDeletedAsync();
await ctx.Database.EnsureCreatedAsync();

// Insert a Blog
ctx.Blogs.Add(new() { Name = "FooBlog" });
await ctx.SaveChangesAsync();

// Query all blogs who's name starts with F
var fBlogs = await ctx.Blogs.Where(b => b.Name.StartsWith("F")).ToListAsync();

public class BlogContext : DbContext
{
    public DbSet<Blog> Blogs { get; set; }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        => optionsBuilder.UseNpgsql(@"Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase");
}

public class Blog
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Aside from providing general EF Core support for PostgreSQL, the provider also exposes some PostgreSQL-specific capabilities, allowing you to query JSON, array or range columns, as well as many other advanced features. For more information, see the the Npgsql site. For information about EF Core in general, see the EF Core website.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.1K)

Showing the top 5 NuGet packages that depend on Npgsql.EntityFrameworkCore.PostgreSQL:

Package Downloads
EFCore.BulkExtensions

EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite

Npgsql.EntityFrameworkCore.PostgreSQL.Design

PostgreSQL/Npgsql provider for Entity Framework Core.

Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.

Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

NodaTime support plugin for PostgreSQL/Npgsql Entity Framework Core provider.

Reo.Core.Database

Package Description

GitHub repositories (199)

Showing the top 5 popular GitHub repositories that depend on Npgsql.EntityFrameworkCore.PostgreSQL:

Repository Stars
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
bitwarden/server
The core infrastructure backend (API, database, Docker, etc).
abpframework/abp
Open Source Web Application Framework for ASP.NET Core. Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
MassTransit/MassTransit
Distributed Application Framework for .NET
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
Version Downloads Last updated
9.0.0-preview.3 204 4/12/2024
9.0.0-preview.2 2,338 3/22/2024
9.0.0-preview.1 23,633 2/14/2024
8.0.2 1,279,820 2/17/2024
8.0.0 3,192,308 11/21/2023
8.0.0-rc.2 132,817 10/11/2023
8.0.0-rc.1 39,978 9/14/2023
8.0.0-preview.7 13,329 8/18/2023
8.0.0-preview.4 56,860 5/20/2023
8.0.0-preview.3 26,964 4/24/2023
8.0.0-preview.2 25,803 3/20/2023
8.0.0-preview.1 61,145 3/3/2023
7.0.11 5,154,499 9/15/2023
7.0.4 9,309,281 4/24/2023
7.0.3 6,187,573 2/15/2023
7.0.1 4,463,088 12/17/2022
7.0.0 2,512,381 11/9/2022
7.0.0-rc.2 49,784 10/11/2022
7.0.0-rc.1 16,200 9/16/2022
7.0.0-preview.7 15,776 8/9/2022
7.0.0-preview.6 13,821 7/13/2022
7.0.0-preview.5 9,743 6/19/2022
7.0.0-preview.4 15,881 5/11/2022
7.0.0-preview.3 12,036 4/19/2022
7.0.0-preview.2 23,847 3/16/2022
7.0.0-preview.1 8,540 2/17/2022
6.0.22 997,704 9/15/2023
6.0.8 6,865,759 12/17/2022
6.0.7 7,944,181 9/16/2022
6.0.6 7,280,078 8/4/2022
6.0.5 5,184,150 6/19/2022
6.0.4 7,287,797 4/19/2022
6.0.3 6,849,252 1/27/2022
6.0.2 3,544,346 12/22/2021
6.0.1 4,492,825 12/3/2021
6.0.0 3,315,100 11/9/2021
6.0.0-rc.2 130,403 10/14/2021
6.0.0-rc.1 77,044 9/24/2021
6.0.0-preview7 19,481 8/16/2021
6.0.0-preview6 5,622 7/31/2021
6.0.0-preview5 40,236 7/1/2021
6.0.0-preview4 31,587 5/27/2021
6.0.0-preview3 22,583 4/15/2021
6.0.0-preview2 8,952 3/11/2021
6.0.0-preview1 12,098 2/16/2021
5.0.10 7,280,317 9/15/2021
5.0.7 5,140,958 6/13/2021
5.0.6 1,686,259 5/11/2021
5.0.5.1 1,192,505 4/21/2021
5.0.5 383,628 4/16/2021
5.0.2 4,410,111 1/19/2021
5.0.1 1,386,582 12/12/2020
5.0.0 1,707,173 11/15/2020
3.1.18 2,155,864 8/27/2021
3.1.11 2,597,607 1/21/2021
3.1.4 11,720,942 5/29/2020
3.1.3 3,158,641 3/26/2020
3.1.2 1,902,877 2/20/2020
3.1.1.2 750,512 2/6/2020
3.1.1.1 182,061 2/3/2020
3.1.1 332,634 1/31/2020
3.1.0 2,806,209 12/4/2019
3.0.1 1,012,570 10/2/2019
3.0.0 259,672 9/26/2019
2.2.4 5,228,252 5/21/2019
2.2.0 5,333,146 12/7/2018
2.1.2 3,549,692 9/8/2018
2.1.1.1 1,106,280 7/15/2018
2.1.1 677,697 7/1/2018
2.1.0 1,261,330 5/31/2018
2.0.2 535,667 4/22/2018
2.0.1 558,735 1/11/2018
2.0.0 891,550 8/16/2017
1.1.1 238,412 7/25/2017
1.1.0 934,076 11/20/2016
1.0.2 58,505 9/24/2016
1.0.1 125,871 7/21/2016
1.0.0 138,464 6/29/2016