Npgsql.EntityFrameworkCore.PostgreSQL 8.0.2

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 prerelease version of this package available.
See the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 8.0.2
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 8.0.2
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="8.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql.EntityFrameworkCore.PostgreSQL --version 8.0.2
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL, 8.0.2"
#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=8.0.2

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

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 net8.0 is compatible.  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 (197)

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.1 16,377 2/14/2024
8.0.2 555,197 2/17/2024
8.0.0 2,638,522 11/21/2023
8.0.0-rc.2 124,286 10/11/2023
8.0.0-rc.1 38,893 9/14/2023
8.0.0-preview.7 12,747 8/18/2023
8.0.0-preview.4 55,292 5/20/2023
8.0.0-preview.3 25,892 4/24/2023
8.0.0-preview.2 25,281 3/20/2023
8.0.0-preview.1 60,887 3/3/2023
7.0.11 4,577,052 9/15/2023
7.0.4 8,942,751 4/24/2023
7.0.3 6,008,918 2/15/2023
7.0.1 4,358,656 12/17/2022
7.0.0 2,435,424 11/9/2022
7.0.0-rc.2 49,500 10/11/2022
7.0.0-rc.1 16,174 9/16/2022
7.0.0-preview.7 15,729 8/9/2022
7.0.0-preview.6 13,757 7/13/2022
7.0.0-preview.5 9,669 6/19/2022
7.0.0-preview.4 15,783 5/11/2022
7.0.0-preview.3 11,954 4/19/2022
7.0.0-preview.2 23,749 3/16/2022
7.0.0-preview.1 8,325 2/17/2022
6.0.22 857,875 9/15/2023
6.0.8 6,549,427 12/17/2022
6.0.7 7,762,969 9/16/2022
6.0.6 7,139,175 8/4/2022
6.0.5 5,108,575 6/19/2022
6.0.4 7,149,915 4/19/2022
6.0.3 6,756,740 1/27/2022
6.0.2 3,502,477 12/22/2021
6.0.1 4,413,509 12/3/2021
6.0.0 3,229,274 11/9/2021
6.0.0-rc.2 130,164 10/14/2021
6.0.0-rc.1 74,305 9/24/2021
6.0.0-preview7 19,447 8/16/2021
6.0.0-preview6 5,590 7/31/2021
6.0.0-preview5 39,516 7/1/2021
6.0.0-preview4 31,530 5/27/2021
6.0.0-preview3 22,549 4/15/2021
6.0.0-preview2 8,920 3/11/2021
6.0.0-preview1 12,051 2/16/2021
5.0.10 7,217,781 9/15/2021
5.0.7 5,115,142 6/13/2021
5.0.6 1,676,034 5/11/2021
5.0.5.1 1,184,195 4/21/2021
5.0.5 380,640 4/16/2021
5.0.2 4,398,086 1/19/2021
5.0.1 1,379,871 12/12/2020
5.0.0 1,696,564 11/15/2020
3.1.18 2,116,883 8/27/2021
3.1.11 2,579,339 1/21/2021
3.1.4 11,681,140 5/29/2020
3.1.3 3,144,116 3/26/2020
3.1.2 1,894,607 2/20/2020
3.1.1.2 749,492 2/6/2020
3.1.1.1 181,524 2/3/2020
3.1.1 330,414 1/31/2020
3.1.0 2,791,904 12/4/2019
3.0.1 1,010,663 10/2/2019
3.0.0 258,740 9/26/2019
2.2.4 5,213,313 5/21/2019
2.2.0 5,317,460 12/7/2018
2.1.2 3,543,745 9/8/2018
2.1.1.1 1,098,790 7/15/2018
2.1.1 676,343 7/1/2018
2.1.0 1,257,102 5/31/2018
2.0.2 535,016 4/22/2018
2.0.1 557,703 1/11/2018
2.0.0 878,418 8/16/2017
1.1.1 236,455 7/25/2017
1.1.0 924,541 11/20/2016
1.0.2 57,728 9/24/2016
1.0.1 125,789 7/21/2016
1.0.0 135,825 6/29/2016