Npgsql Entity Framework Core provider for PostgreSQLNpgsql.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.
This package is a plugin which allows you to use the NodaTime date/time library when interacting with PostgreSQL; this provides a better and safer API for dealing with date and time data.
To use the plugin, simply add UseNodaTime
as below and use NodaTime types in your entity properties:
await using var ctx = new BlogContext();
await ctx.Database.EnsureDeletedAsync();
await ctx.Database.EnsureCreatedAsync();
// Insert a Blog
ctx.Blogs.Add(new()
{
Name = "FooBlog",
CreationTime = SystemClock.Instance.GetCurrentInstant()
});
await ctx.SaveChangesAsync();
// Query all blogs created in 2020 or after
var newBlogs = await ctx.Blogs.Where(b => b.CreationTime >= Instant.FromUtc(2020, 1, 1, 0, 0, 0)).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",
o => o.UseNodaTime());
}
public class Blog
{
public int Id { get; set; }
public string Name { get; set; }
public Instant CreationTime { get; set; }
}
The plugin also supports translating most NodaTime methods and properties into corresponding PostgreSQL date/time operations. For more information, see the NodaTime plugin documentation page.
Product Versions Compatible and additional computed target framework versions. .NET net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. 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. .NET Core netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. .NET Standard netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. .NET Framework net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. MonoAndroid monoandroid monoandroid was computed. MonoMac monomac monomac was computed. MonoTouch monotouch monotouch was computed. Tizen tizen40 tizen40 was computed. tizen60 tizen60 was computed. Xamarin.iOS xamarinios xamarinios was computed. Xamarin.Mac xamarinmac xamarinmac was computed. Xamarin.TVOS xamarintvos xamarintvos was computed. Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. NuGet packages (14)Showing the top 5 NuGet packages that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime:
GitHub repositories (6)Showing the top 6 popular GitHub repositories that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime:
Repository Stars ChilliCream/graphql-platformWelcome 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 linq2db/linq2dbLinq to database provider.
3.1K ErikEJ/EFCorePowerToolsEntity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
2.4K linq2db/linq2db.EntityFrameworkCoreBring power of Linq To DB to Entity Framework Core projects
482 carlreid/StreamMasterA powerful M3U proxy and stream management platform for Plex DVR, Emby, Jellyfin Live TV (and more)
165 NosCoreIO/NosCoreNosCore is a Nostale emulator in c# (.Net 9) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog
145 Version Downloads Last Updated 10.0.0-preview.7 11 8/17/2025 10.0.0-preview.5 512 6/11/2025 10.0.0-preview.3 437 4/12/2025 10.0.0-preview.2 439 3/24/2025 10.0.0-preview.1 129 3/1/2025 9.0.4 429,008 3/1/2025 9.0.3 146,403 1/17/2025 9.0.2 85,800 12/7/2024 9.0.1 56,757 11/19/2024 9.0.0 7,941 11/18/2024 9.0.0-rc.2 3,496 10/13/2024 9.0.0-rc.1 1,025 9/13/2024 9.0.0-preview.7 152 9/1/2024 9.0.0-preview.3 666 4/12/2024 9.0.0-preview.2 146 3/22/2024 9.0.0-preview.1 166 2/14/2024 8.0.11 284,985 11/18/2024 8.0.10 289,246 10/17/2024 8.0.8 188,379 9/27/2024 8.0.4 736,581 5/11/2024 8.0.2 351,421 2/17/2024 8.0.0 316,286 11/21/2023 8.0.0-rc.2 13,786 10/11/2023 8.0.0-rc.1 1,400 9/14/2023 8.0.0-preview.7 321 8/18/2023 8.0.0-preview.4 4,533 5/20/2023 8.0.0-preview.3 216 4/24/2023 8.0.0-preview.2 352 3/20/2023 8.0.0-preview.1 306 3/3/2023 7.0.18 40,788 5/11/2024 7.0.11 336,855 9/15/2023 7.0.4 450,782 4/24/2023 7.0.3 436,061 2/15/2023 7.0.1 290,124 12/17/2022 7.0.0 73,172 11/9/2022 7.0.0-rc.2 2,645 10/11/2022 7.0.0-rc.1 840 9/16/2022 7.0.0-preview.7 811 8/9/2022 7.0.0-preview.6 565 7/13/2022 7.0.0-preview.5 345 6/19/2022 7.0.0-preview.4 506 5/11/2022 7.0.0-preview.3 409 4/19/2022 7.0.0-preview.2 276 3/16/2022 7.0.0-preview.1 563 2/17/2022 6.0.29 32,928 5/11/2024 6.0.22 53,423 9/15/2023 6.0.8 293,056 12/17/2022 6.0.7 346,443 9/16/2022 6.0.6 295,921 8/4/2022 6.0.5 244,458 6/19/2022 6.0.4 257,533 4/19/2022 6.0.3 355,946 1/27/2022 6.0.2 233,575 12/22/2021 6.0.1 111,108 12/3/2021 6.0.0 78,819 11/9/2021 6.0.0-rc.2 1,471 10/14/2021 6.0.0-rc.1 1,220 9/24/2021 6.0.0-preview7 2,440 8/16/2021 6.0.0-preview6 964 7/31/2021 6.0.0-preview5 1,041 7/1/2021 6.0.0-preview4 1,026 5/27/2021 6.0.0-preview3 1,063 4/15/2021 6.0.0-preview2 1,086 3/11/2021 6.0.0-preview1 1,068 2/16/2021 5.0.10 359,281 9/15/2021 5.0.7 275,056 6/13/2021 5.0.6 75,117 5/11/2021 5.0.5.1 48,796 4/21/2021 5.0.5 9,362 4/16/2021 5.0.2 315,583 1/19/2021 5.0.1 59,515 12/12/2020 5.0.0 22,767 11/15/2020 5.0.0-rc2 4,332 10/15/2020 5.0.0-rc1 4,055 9/14/2020 5.0.0-preview8 1,163 8/27/2020 5.0.0-preview7 1,170 7/22/2020 5.0.0-preview6 1,762 6/26/2020 5.0.0-preview5 1,092 6/11/2020 5.0.0-preview4 1,177 5/19/2020 5.0.0-preview3 1,102 4/24/2020 5.0.0-preview2 1,218 4/2/2020 5.0.0-preview.2.20120.8 441 3/20/2020 3.1.18 85,610 8/27/2021 3.1.11 57,048 1/21/2021 3.1.4 337,948 5/29/2020 3.1.3 135,944 3/26/2020 3.1.2 18,812 2/20/2020 3.1.1 28,288 1/31/2020 3.1.0 31,520 12/4/2019 3.1.0-preview3 3,159 11/15/2019 3.1.0-preview2 1,134 11/6/2019 3.0.1 11,740 10/2/2019 3.0.0 7,509 9/26/2019 3.0.0-preview9 2,784 9/4/2019 3.0.0-preview8 1,233 8/15/2019 3.0.0-preview7 1,255 7/25/2019 3.0.0-preview5 1,302 5/6/2019 3.0.0-preview4 1,179 4/21/2019 3.0.0-preview3 1,242 3/12/2019 3.0.0-preview1 1,573 12/16/2018 2.2.4 70,917 5/21/2019 2.2.0 64,248 12/7/2018 2.1.1 208,285 7/1/2018 2.1.0 7,355 5/31/2018 2.1.0-rc1 1,877 5/8/2018npgsql postgresql postgres Entity Framework Core entity-framework-core ef efcore orm sql nodatime date time
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