Npgsql.EntityFrameworkCore.PostgreSQL 7.0.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 6.0
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 7.0.3
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 7.0.3
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.3" />
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.3
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL, 7.0.3"
#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.3

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

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 Versions
.NET net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (852)

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

Package Downloads
EFCore.BulkExtensions

EntityFramework 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.

Util.Datas

Util.Datas是Util应用框架的数据访问类库。 Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。

GitHub repositories (157)

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
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
MassTransit/MassTransit
Distributed Application Framework for .NET
Version Downloads Last updated
8.0.0-preview.2 74 3/20/2023
8.0.0-preview.1 3,155 3/3/2023
7.0.3 415,806 2/15/2023
7.0.1 1,262,226 12/17/2022
7.0.0 832,295 11/9/2022
7.0.0-rc.2 34,673 10/11/2022
7.0.0-rc.1 11,309 9/16/2022
7.0.0-preview.7 13,043 8/9/2022
7.0.0-preview.6 10,656 7/13/2022
7.0.0-preview.5 7,485 6/19/2022
7.0.0-preview.4 12,665 5/11/2022
7.0.0-preview.3 8,454 4/19/2022
7.0.0-preview.2 22,104 3/16/2022
7.0.0-preview.1 7,109 2/17/2022
6.0.8 716,486 12/17/2022
6.0.7 3,597,787 9/16/2022
6.0.6 3,730,520 8/4/2022
6.0.5 3,275,282 6/19/2022
6.0.4 4,458,486 4/19/2022
6.0.3 4,603,554 1/27/2022
6.0.2 2,445,651 12/22/2021
6.0.1 2,764,787 12/3/2021
6.0.0 1,632,027 11/9/2021
6.0.0-rc.2 124,113 10/14/2021
6.0.0-rc.1 38,130 9/24/2021
6.0.0-preview7 17,240 8/16/2021
6.0.0-preview6 5,064 7/31/2021
6.0.0-preview5 21,037 7/1/2021
6.0.0-preview4 30,523 5/27/2021
6.0.0-preview3 21,105 4/15/2021
6.0.0-preview2 8,349 3/11/2021
6.0.0-preview1 10,754 2/16/2021
5.0.10 5,844,147 9/15/2021
5.0.7 4,348,447 6/13/2021
5.0.6 1,487,377 5/11/2021
5.0.5.1 1,046,217 4/21/2021
5.0.5 308,741 4/16/2021
5.0.2 4,042,850 1/19/2021
5.0.1 1,232,600 12/12/2020
5.0.0 1,506,922 11/15/2020
3.1.18 1,424,733 8/27/2021
3.1.11 2,260,817 1/21/2021
3.1.4 10,540,490 5/29/2020
3.1.3 2,892,112 3/26/2020
3.1.2 1,708,784 2/20/2020
3.1.1.2 719,731 2/6/2020
3.1.1.1 172,198 2/3/2020
3.1.1 290,919 1/31/2020
3.1.0 2,529,973 12/4/2019
3.0.1 963,168 10/2/2019
3.0.0 234,932 9/26/2019
2.2.4 4,777,845 5/21/2019
2.2.0 4,929,288 12/7/2018
2.1.2 3,383,792 9/8/2018
2.1.1.1 978,539 7/15/2018
2.1.1 653,854 7/1/2018
2.1.0 1,189,498 5/31/2018
2.0.2 451,965 4/22/2018
2.0.1 533,398 1/11/2018
2.0.0 792,907 8/16/2017
1.1.1 202,197 7/25/2017
1.1.0 773,771 11/20/2016
1.0.2 49,436 9/24/2016
1.0.1 123,019 7/21/2016
1.0.0 101,433 6/29/2016