Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime 9.0.4
Prefix ReservedSee the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 9.0.4
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime -Version 9.0.4
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="9.0.4" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="9.0.4" />Directory.Packages.props
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" />Project file
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 9.0.4
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime, 9.0.4"
#:package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime@9.0.4
#addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=9.0.4Install as a Cake Addin
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=9.0.4Install as a Cake Tool
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.
This package is a plugin which allows you to use theNodaTime 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 addUseNodaTime
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 Blogctx.Blogs.Add(new(){ Name = "FooBlog", CreationTime = SystemClock.Instance.GetCurrentInstant()});await ctx.SaveChangesAsync();// Query all blogs created in 2020 or aftervar 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 theNodaTime plugin documentation page.
Product | VersionsCompatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
net8.0
- Npgsql.EntityFrameworkCore.PostgreSQL(>= 9.0.4)
- Npgsql.NodaTime(>= 9.0.3)
NuGet packages (16)
Showing the top 5 NuGet packages that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime:
Package | Downloads |
---|---|
devprime.stack.state DevPrime State | |
SvrdSdk.AspNetCore Package Description | |
EasyDesk.CleanArchitecture.Dal.PostgreSql Utilities for the SqlServer data access layer of the clean architecture as seen by EasyDesk. | |
CockroachDB.EFCore.Provider Package Description | |
LS.Helpers.Hosting .NET Core helpers for ASP.NET hosting |
GitHub repositories (6)
Showing the top 6 popular GitHub repositories that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime:
Repository | Stars |
---|---|
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. | |
linq2db/linq2db Linq to database provider. | |
ErikEJ/EFCorePowerTools Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI | |
linq2db/linq2db.EntityFrameworkCore Bring power of Linq To DB to Entity Framework Core projects | |
carlreid/StreamMaster A powerful M3U proxy and stream management platform for Plex DVR, Emby, Jellyfin Live TV (and more) | |
NosCoreIO/NosCore NosCore is a Nostale emulator in c# (.Net 9) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog |
Version | Downloads | Last Updated |
---|---|---|
10.0.0-rc.1 | 1,217 | 9/10/2025 |
10.0.0-preview.7 | 962 | 8/17/2025 |
10.0.0-preview.5 | 1,700 | 6/11/2025 |
10.0.0-preview.3 | 463 | 4/12/2025 |
10.0.0-preview.2 | 454 | 3/24/2025 |
10.0.0-preview.1 | 142 | 3/1/2025 |
9.0.4 | 780,985 | 3/1/2025 |
9.0.3 | 176,634 | 1/17/2025 |
9.0.2 | 102,372 | 12/7/2024 |
9.0.1 | 68,525 | 11/19/2024 |
9.0.0 | 9,560 | 11/18/2024 |
9.0.0-rc.2 | 3,616 | 10/13/2024 |
9.0.0-rc.1 | 1,038 | 9/13/2024 |
9.0.0-preview.7 | 266 | 9/1/2024 |
9.0.0-preview.3 | 709 | 4/12/2024 |
9.0.0-preview.2 | 156 | 3/22/2024 |
9.0.0-preview.1 | 185 | 2/14/2024 |
8.0.11 | 378,763 | 11/18/2024 |
8.0.10 | 343,610 | 10/17/2024 |
8.0.8 | 198,681 | 9/27/2024 |
8.0.4 | 810,599 | 5/11/2024 |
8.0.2 | 371,260 | 2/17/2024 |
8.0.0 | 337,348 | 11/21/2023 |
8.0.0-rc.2 | 14,537 | 10/11/2023 |
8.0.0-rc.1 | 1,505 | 9/14/2023 |
8.0.0-preview.7 | 346 | 8/18/2023 |
8.0.0-preview.4 | 4,560 | 5/20/2023 |
8.0.0-preview.3 | 239 | 4/24/2023 |
8.0.0-preview.2 | 385 | 3/20/2023 |
8.0.0-preview.1 | 336 | 3/3/2023 |
7.0.18 | 46,737 | 5/11/2024 |
7.0.11 | 349,531 | 9/15/2023 |
7.0.4 | 460,963 | 4/24/2023 |
7.0.3 | 439,549 | 2/15/2023 |
7.0.1 | 292,390 | 12/17/2022 |
7.0.0 | 73,828 | 11/9/2022 |
7.0.0-rc.2 | 2,676 | 10/11/2022 |
7.0.0-rc.1 | 870 | 9/16/2022 |
7.0.0-preview.7 | 846 | 8/9/2022 |
7.0.0-preview.6 | 597 | 7/13/2022 |
7.0.0-preview.5 | 368 | 6/19/2022 |
7.0.0-preview.4 | 534 | 5/11/2022 |
7.0.0-preview.3 | 444 | 4/19/2022 |
7.0.0-preview.2 | 304 | 3/16/2022 |
7.0.0-preview.1 | 589 | 2/17/2022 |
6.0.29 | 39,112 | 5/11/2024 |
6.0.22 | 55,321 | 9/15/2023 |
6.0.8 | 297,762 | 12/17/2022 |
6.0.7 | 350,139 | 9/16/2022 |
6.0.6 | 298,712 | 8/4/2022 |
6.0.5 | 246,730 | 6/19/2022 |
6.0.4 | 258,171 | 4/19/2022 |
6.0.3 | 357,377 | 1/27/2022 |
6.0.2 | 234,275 | 12/22/2021 |
6.0.1 | 115,005 | 12/3/2021 |
6.0.0 | 82,580 | 11/9/2021 |
6.0.0-rc.2 | 1,502 | 10/14/2021 |
6.0.0-rc.1 | 1,252 | 9/24/2021 |
6.0.0-preview7 | 2,489 | 8/16/2021 |
6.0.0-preview6 | 1,013 | 7/31/2021 |
6.0.0-preview5 | 1,099 | 7/1/2021 |
6.0.0-preview4 | 1,077 | 5/27/2021 |
6.0.0-preview3 | 1,115 | 4/15/2021 |
6.0.0-preview2 | 1,141 | 3/11/2021 |
6.0.0-preview1 | 1,119 | 2/16/2021 |
5.0.10 | 360,434 | 9/15/2021 |
5.0.7 | 275,325 | 6/13/2021 |
5.0.6 | 75,281 | 5/11/2021 |
5.0.5.1 | 48,957 | 4/21/2021 |
5.0.5 | 9,500 | 4/16/2021 |
5.0.2 | 315,933 | 1/19/2021 |
5.0.1 | 59,745 | 12/12/2020 |
5.0.0 | 22,902 | 11/15/2020 |
5.0.0-rc2 | 4,370 | 10/15/2020 |
5.0.0-rc1 | 4,116 | 9/14/2020 |
5.0.0-preview8 | 1,218 | 8/27/2020 |
5.0.0-preview7 | 1,222 | 7/22/2020 |
5.0.0-preview6 | 1,809 | 6/26/2020 |
5.0.0-preview5 | 1,146 | 6/11/2020 |
5.0.0-preview4 | 1,229 | 5/19/2020 |
5.0.0-preview3 | 1,151 | 4/24/2020 |
5.0.0-preview2 | 1,282 | 4/2/2020 |
5.0.0-preview.2.20120.8 | 471 | 3/20/2020 |
3.1.18 | 91,312 | 8/27/2021 |
3.1.11 | 57,209 | 1/21/2021 |
3.1.4 | 338,202 | 5/29/2020 |
3.1.3 | 136,145 | 3/26/2020 |
3.1.2 | 18,937 | 2/20/2020 |
3.1.1 | 28,568 | 1/31/2020 |
3.1.0 | 31,651 | 12/4/2019 |
3.1.0-preview3 | 3,212 | 11/15/2019 |
3.1.0-preview2 | 1,188 | 11/6/2019 |
3.0.1 | 11,895 | 10/2/2019 |
3.0.0 | 7,630 | 9/26/2019 |
3.0.0-preview9 | 2,835 | 9/4/2019 |
3.0.0-preview8 | 1,287 | 8/15/2019 |
3.0.0-preview7 | 1,306 | 7/25/2019 |
3.0.0-preview5 | 1,359 | 5/6/2019 |
3.0.0-preview4 | 1,233 | 4/21/2019 |
3.0.0-preview3 | 1,297 | 3/12/2019 |
3.0.0-preview1 | 1,643 | 12/16/2018 |
2.2.4 | 71,208 | 5/21/2019 |
2.2.0 | 64,383 | 12/7/2018 |
2.1.1 | 208,485 | 7/1/2018 |
2.1.0 | 8,053 | 5/31/2018 |
2.1.0-rc1 | 1,965 | 5/8/2018 |
- Last updated3/1/2025
- Project website
- Source repository
- PostgreSQL license
- Download package (69.33 KB)
- Download symbols (20.84 KB)
- Open in NuGet Package Explorer
Open in NuGet Trends
- Report package
npgsqlpostgresqlpostgresEntityFrameworkCoreentity-framework-coreefefcoreormsqlnodatimedatetime
Copyright 2024 © The Npgsql Development Team