A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.nuget.org/packages/Npgsql.EntityFrameworkCore.PostgreSQL/ below:

NuGet Gallery | Npgsql.EntityFrameworkCore.PostgreSQL 9.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 Versions Compatible and additional computed target framework versions. .NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  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.  NuGet packages (1.5K)

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

GitHub repositories (273)

Showing the top 20 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.

37.0K bitwarden/server

Bitwarden infrastructure/backend (API, database, Docker, etc).

17.0K 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. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.

13.7K dotnet/eShop

A reference .NET application implementing an eCommerce site

8.7K MassTransit/MassTransit

Distributed Application Framework for .NET

7.5K elsa-workflows/elsa-core

A .NET workflows library

7.3K btcpayserver/btcpayserver

Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.

6.9K fullstackhero/dotnet-starter-kit

Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.

5.8K danielgerlag/workflow-core

Lightweight workflow engine for .NET Standard

5.7K 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

5.6K ChilliCream/graphql-platform

Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.

5.6K immense/Remotely

A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.

4.9K dotnet/aspire

Tools, templates, and packages to accelerate building observable, production-ready apps

4.8K dotnetcore/Util

Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。

4.6K dotnetcore/WTM

Use WTM to write .netcore app fast !!!

4.3K Xabaril/AspNetCore.Diagnostics.HealthChecks

Enterprise HealthChecks for ASP.NET Core Diagnostics Package

4.3K testcontainers/testcontainers-dotnet

A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.

4.1K cq-panda/Vue.NetCore

(已支持sqlsugar).NetCore、.Net6、Vue2、Vue3、Vite、TypeScript、Element plus+uniapp前后端分离,全自动生成代码;支持移动端(ios/android/h5/微信小程序。http://www.volcore.xyz/

4.1K Ombi-app/Ombi

Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!

3.9K borisdj/EFCore.BulkExtensions

Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite, Oracle

3.9K Version Downloads Last Updated 10.0.0-preview.7 28 8/17/2025 10.0.0-preview.5 7,670 6/11/2025 10.0.0-preview.3 10,390 4/12/2025 10.0.0-preview.2 4,003 3/24/2025 10.0.0-preview.1 2,714 3/1/2025 9.0.4 6,613,378 3/1/2025 9.0.3 4,075,640 1/17/2025 9.0.2 3,355,285 12/7/2024 9.0.1 1,457,298 11/19/2024 9.0.0-rc.2 107,101 10/13/2024 9.0.0-rc.1 59,990 9/13/2024 9.0.0-preview.7 13,389 9/1/2024 9.0.0-preview.3 122,356 4/12/2024 9.0.0-preview.2 16,620 3/22/2024 9.0.0-preview.1 51,777 2/14/2024 8.0.11 8,896,979 11/18/2024 8.0.10 5,481,805 10/17/2024 8.0.8 3,377,449 9/27/2024 8.0.4 24,684,397 5/11/2024 8.0.2 12,967,083 2/17/2024 8.0.0 11,093,081 11/21/2023 8.0.0-rc.2 171,314 10/11/2023 8.0.0-rc.1 75,434 9/14/2023 8.0.0-preview.7 16,699 8/18/2023 8.0.0-preview.4 74,756 5/20/2023 8.0.0-preview.3 44,072 4/24/2023 8.0.0-preview.2 30,465 3/20/2023 8.0.0-preview.1 63,817 3/3/2023 7.0.18 1,687,136 5/11/2024 7.0.11 9,121,251 9/15/2023 7.0.4 13,372,082 4/24/2023 7.0.3 8,229,239 2/15/2023 7.0.1 5,615,781 12/17/2022 7.0.0 3,511,839 11/9/2022 7.0.0-rc.2 58,450 10/11/2022 7.0.0-rc.1 16,954 9/16/2022 7.0.0-preview.7 16,371 8/9/2022 7.0.0-preview.6 16,335 7/13/2022 7.0.0-preview.5 11,200 6/19/2022 7.0.0-preview.4 18,725 5/11/2022 7.0.0-preview.3 14,589 4/19/2022 7.0.0-preview.2 24,983 3/16/2022 7.0.0-preview.1 10,767 2/17/2022 6.0.29 1,630,230 5/11/2024 6.0.22 2,308,433 9/15/2023 6.0.8 11,105,107 12/17/2022 6.0.7 10,150,775 9/16/2022 6.0.6 8,930,873 8/4/2022 6.0.5 6,311,030 6/19/2022 6.0.4 8,747,880 4/19/2022 6.0.3 8,004,322 1/27/2022 6.0.2 4,070,651 12/22/2021 6.0.1 5,500,983 12/3/2021 6.0.0 4,583,884 11/9/2021 6.0.0-rc.2 134,412 10/14/2021 6.0.0-rc.1 146,341 9/24/2021 6.0.0-preview7 20,212 8/16/2021 6.0.0-preview6 6,064 7/31/2021 6.0.0-preview5 44,330 7/1/2021 6.0.0-preview4 32,708 5/27/2021 6.0.0-preview3 23,151 4/15/2021 6.0.0-preview2 10,264 3/11/2021 6.0.0-preview1 13,842 2/16/2021 5.0.10 8,353,191 9/15/2021 5.0.7 5,556,370 6/13/2021 5.0.6 1,828,960 5/11/2021 5.0.5.1 1,323,400 4/21/2021 5.0.5 418,778 4/16/2021 5.0.2 4,580,352 1/19/2021 5.0.1 1,518,557 12/12/2020 5.0.0 1,902,219 11/15/2020 3.1.18 3,014,737 8/27/2021 3.1.11 2,868,578 1/21/2021 3.1.4 12,379,005 5/29/2020 3.1.3 3,411,116 3/26/2020 3.1.2 2,000,238 2/20/2020 3.1.1.2 772,552 2/6/2020 3.1.1.1 191,573 2/3/2020 3.1.1 364,536 1/31/2020 3.1.0 3,036,332 12/4/2019 3.0.1 1,046,688 10/2/2019 3.0.0 272,267 9/26/2019 2.2.4 5,443,691 5/21/2019 2.2.0 5,527,867 12/7/2018 2.1.2 3,618,549 9/8/2018 2.1.1.1 1,232,232 7/15/2018 2.1.1 693,595 7/1/2018 2.1.0 1,308,504 5/31/2018 2.0.2 546,371 4/22/2018 2.0.1 580,554 1/11/2018 2.0.0 1,030,363 8/16/2017 1.1.1 337,339 7/25/2017 1.1.0 1,504,569 11/20/2016 1.0.2 88,918 9/24/2016 1.0.1 127,365 7/21/2016 1.0.0 304,960 6/29/2016

npgsql postgresql postgres Entity Framework Core entity-framework-core ef efcore orm sql

Copyright 2024 © The Npgsql Development Team


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4