Npgsql.NodaTime
8.0.5
Prefix Reserved
dotnet add package Npgsql.NodaTime --version 8.0.5
NuGet\Install-Package Npgsql.NodaTime -Version 8.0.5
<PackageReference Include="Npgsql.NodaTime" Version="8.0.5" />
paket add Npgsql.NodaTime --version 8.0.5
#r "nuget: Npgsql.NodaTime, 8.0.5"
// Install Npgsql.NodaTime as a Cake Addin #addin nuget:?package=Npgsql.NodaTime&version=8.0.5 // Install Npgsql.NodaTime as a Cake Tool #tool nuget:?package=Npgsql.NodaTime&version=8.0.5
Npgsql is the open source .NET data provider for PostgreSQL. It allows you to connect and interact with PostgreSQL server using .NET.
This package is an Npgsql 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 NodaTime plugin, add a dependency on this package and create a NpgsqlDataSource. Once this is done, you can use NodaTime types when interacting with PostgreSQL, just as you would use e.g. DateTime
:
using Npgsql;
var dataSourceBuilder = new NpgsqlDataSourceBuilder(ConnectionString);
dataSourceBuilder.UseNodaTime();
var dataSource = dataSourceBuilder.Build();
var conn = await dataSource.OpenConnectionAsync();
// Write NodaTime Instant to PostgreSQL "timestamp with time zone" (UTC)
using (var cmd = new NpgsqlCommand(@"INSERT INTO mytable (my_timestamptz) VALUES (@p)", conn))
{
cmd.Parameters.Add(new NpgsqlParameter("p", Instant.FromUtc(2011, 1, 1, 10, 30)));
cmd.ExecuteNonQuery();
}
// Read timestamp back from the database as an Instant
using (var cmd = new NpgsqlCommand(@"SELECT my_timestamptz FROM mytable", conn))
using (var reader = cmd.ExecuteReader())
{
reader.Read();
var instant = reader.GetFieldValue<Instant>(0);
}
For more information, visit the NodaTime plugin documentation page.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 was computed. 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. |
.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. |
NuGet packages (15)
Showing the top 5 NuGet packages that depend on Npgsql.NodaTime:
Package | Downloads |
---|---|
Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime
NodaTime support plugin for PostgreSQL/Npgsql Entity Framework Core provider. |
|
Marten.NodaTime
NodaTime extension for Marten |
|
Rocket.Surgery.Extensions.Marten
Package Description |
|
PostgreSQLCopyHelper.NodaTime
A library for Bulk Copy / Bulk Inserts with PostgreSQL. |
|
NSSL.Deviax.QueryBuilder.Postgres
SQL DSL / Micro ORM - PostgreSQL Driver |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on Npgsql.NodaTime:
Repository | Stars |
---|---|
JasperFx/marten
.NET Transactional Document DB and Event Store on PostgreSQL
|
|
npgsql/efcore.pg
Entity Framework Core provider for PostgreSQL
|
|
PluralKit/PluralKit
|
|
PostgreSQLCopyHelper/PostgreSQLCopyHelper
Simple Wrapper around Npgsql for using PostgreSQL COPY functions.
|
|
NosCoreIO/NosCore
NosCore is a Nostale emulator in c# (.Net 8) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog
|
Version | Downloads | Last updated |
---|---|---|
8.0.5 | 41,685 | 10/13/2024 |
8.0.4 | 80,529 | 9/10/2024 |
8.0.3 | 599,179 | 5/9/2024 |
8.0.2 | 276,440 | 2/10/2024 |
8.0.1 | 58,120 | 12/4/2023 |
8.0.0 | 279,171 | 11/21/2023 |
8.0.0-rtm | 117 | 11/20/2023 |
8.0.0-rc.2 | 13,611 | 10/11/2023 |
8.0.0-preview.4 | 8,774 | 5/17/2023 |
8.0.0-preview.3 | 402 | 4/24/2023 |
8.0.0-preview.2 | 496 | 3/20/2023 |
8.0.0-preview.1 | 599 | 3/3/2023 |
7.0.8 | 1,124 | 9/10/2024 |
7.0.7 | 26,191 | 5/9/2024 |
7.0.6 | 379,795 | 9/14/2023 |
7.0.4 | 490,592 | 4/24/2023 |
7.0.2 | 466,925 | 2/15/2023 |
7.0.1 | 345,828 | 12/17/2022 |
7.0.0 | 84,313 | 11/9/2022 |
7.0.0-rc.2 | 3,948 | 10/11/2022 |
7.0.0-rc.1 | 1,070 | 9/16/2022 |
7.0.0-preview.7 | 2,345 | 8/9/2022 |
7.0.0-preview.6 | 848 | 7/13/2022 |
7.0.0-preview.5 | 617 | 6/19/2022 |
7.0.0-preview.4 | 895 | 5/11/2022 |
7.0.0-preview.3 | 722 | 4/19/2022 |
7.0.0-preview.2 | 514 | 3/16/2022 |
7.0.0-preview.1 | 507 | 2/17/2022 |
6.0.12 | 3,158 | 9/10/2024 |
6.0.11 | 31,435 | 5/9/2024 |
6.0.10 | 75,703 | 9/14/2023 |
6.0.9 | 104,288 | 2/15/2023 |
6.0.8 | 238,541 | 12/17/2022 |
6.0.7 | 364,004 | 9/16/2022 |
6.0.6 | 469,034 | 8/4/2022 |
6.0.5 | 221,920 | 6/19/2022 |
6.0.4 | 335,682 | 4/19/2022 |
6.0.3 | 382,271 | 1/27/2022 |
6.0.2 | 254,513 | 12/20/2021 |
6.0.1 | 303,410 | 12/3/2021 |
6.0.0 | 102,061 | 11/9/2021 |
6.0.0-rc.2 | 1,416 | 10/14/2021 |
6.0.0-rc.1 | 1,416 | 9/24/2021 |
6.0.0-preview7 | 2,352 | 8/16/2021 |
6.0.0-preview6 | 799 | 7/31/2021 |
6.0.0-preview5 | 1,475 | 7/1/2021 |
6.0.0-preview4 | 849 | 5/27/2021 |
6.0.0-preview3 | 834 | 4/15/2021 |
6.0.0-preview2 | 13,415 | 3/11/2021 |
5.0.18 | 393 | 5/9/2024 |
5.0.17 | 649 | 9/14/2023 |
5.0.16 | 419 | 2/15/2023 |
5.0.15 | 608 | 9/16/2022 |
5.0.14 | 1,177 | 6/19/2022 |
5.0.13 | 956 | 4/26/2022 |
5.0.12 | 17,136 | 2/1/2022 |
5.0.11 | 68,299 | 11/12/2021 |
5.0.10 | 324,517 | 9/15/2021 |
5.0.7 | 305,088 | 6/13/2021 |
5.0.5 | 92,406 | 5/11/2021 |
5.0.4 | 253,987 | 3/25/2021 |
5.0.3 | 148,632 | 1/26/2021 |
5.0.2 | 202,460 | 1/19/2021 |
5.0.1.1 | 64,885 | 12/12/2020 |
5.0.0 | 33,583 | 11/15/2020 |
5.0.0-preview1.1 | 4,447 | 10/13/2020 |
5.0.0-alpha1 | 652 | 6/17/2020 |
4.1.14 | 176 | 5/18/2024 |
4.1.13 | 136 | 5/9/2024 |
4.1.12 | 3,387 | 6/19/2022 |
4.1.11 | 973 | 4/26/2022 |
4.1.9 | 67,437 | 4/6/2021 |
4.1.8 | 77,407 | 1/21/2021 |
4.1.7 | 1,279 | 12/12/2020 |
4.1.6 | 165,896 | 11/15/2020 |
4.1.5 | 88,920 | 9/28/2020 |
4.1.4 | 149,380 | 7/19/2020 |
4.1.3 | 428,616 | 1/31/2020 |
4.1.2 | 103,947 | 11/14/2019 |
4.1.1 | 56,597 | 10/2/2019 |
4.1.0 | 9,863 | 9/26/2019 |
4.1.0-preview2 | 2,825 | 9/4/2019 |
4.1.0-preview1 | 1,392 | 8/15/2019 |
4.0.17 | 148 | 6/10/2024 |
4.0.16 | 114 | 5/18/2024 |
4.0.15 | 107 | 5/18/2024 |
4.0.14 | 113 | 5/9/2024 |
4.0.13 | 499 | 6/19/2022 |
4.0.11 | 596 | 7/19/2020 |
4.0.10 | 39,196 | 9/9/2019 |
4.0.9 | 10,971 | 8/14/2019 |
4.0.8 | 2,505 | 7/18/2019 |
4.0.7 | 127,914 | 5/21/2019 |
4.0.6 | 2,165 | 4/11/2019 |
4.0.5 | 11,782 | 3/3/2019 |
4.0.4 | 68,981 | 12/6/2018 |
1.0.0 | 191,500 | 5/30/2018 |
1.0.0-rc1 | 1,621 | 5/8/2018 |
1.0.0-preview1 | 2,919 | 3/22/2018 |