Npgsql.NodaTime 7.0.2

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 .NET Standard 2.0
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Npgsql.NodaTime --version 7.0.2
NuGet\Install-Package Npgsql.NodaTime -Version 7.0.2
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.NodaTime" Version="7.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql.NodaTime --version 7.0.2
#r "nuget: Npgsql.NodaTime, 7.0.2"
#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.NodaTime as a Cake Addin
#addin nuget:?package=Npgsql.NodaTime&version=7.0.2

// Install Npgsql.NodaTime as a Cake Tool
#tool nuget:?package=Npgsql.NodaTime&version=7.0.2

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, simply add a dependency on this package and set it up at program startup:

NpgsqlConnection.GlobalTypeMapper.UseNodaTime();

Once this is done, you can simply use NodaTime types when interacting with PostgreSQL, just as you would use e.g. DateTime:

// 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
.NET net5.0 net5.0-windows 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
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (10)

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

Package Downloads
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.

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 7) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog
Version Downloads Last updated
8.0.0-preview.2 118 3/20/2023
8.0.0-preview.1 472 3/3/2023
7.0.2 39,136 2/15/2023
7.0.1 97,543 12/17/2022
7.0.0 44,261 11/9/2022
7.0.0-rc.2 3,652 10/11/2022
7.0.0-rc.1 962 9/16/2022
7.0.0-preview.7 2,087 8/9/2022
7.0.0-preview.6 767 7/13/2022
7.0.0-preview.5 541 6/19/2022
7.0.0-preview.4 798 5/11/2022
7.0.0-preview.3 643 4/19/2022
7.0.0-preview.2 439 3/16/2022
7.0.0-preview.1 432 2/17/2022
6.0.9 3,195 2/15/2023
6.0.8 34,885 12/17/2022
6.0.7 159,710 9/16/2022
6.0.6 284,663 8/4/2022
6.0.5 175,864 6/19/2022
6.0.4 270,503 4/19/2022
6.0.3 242,390 1/27/2022
6.0.2 172,619 12/20/2021
6.0.1 127,075 12/3/2021
6.0.0 72,536 11/9/2021
6.0.0-rc.2 1,164 10/14/2021
6.0.0-rc.1 1,347 9/24/2021
6.0.0-preview7 1,954 8/16/2021
6.0.0-preview6 403 7/31/2021
6.0.0-preview5 812 7/1/2021
6.0.0-preview4 410 5/27/2021
6.0.0-preview3 392 4/15/2021
6.0.0-preview2 9,685 3/11/2021
5.0.16 111 2/15/2023
5.0.15 332 9/16/2022
5.0.14 419 6/19/2022
5.0.13 631 4/26/2022
5.0.12 16,803 2/1/2022
5.0.11 67,954 11/12/2021
5.0.10 298,440 9/15/2021
5.0.7 291,537 6/13/2021
5.0.5 89,903 5/11/2021
5.0.4 223,810 3/25/2021
5.0.3 147,967 1/26/2021
5.0.2 190,074 1/19/2021
5.0.1.1 63,684 12/12/2020
5.0.0 32,714 11/15/2020
5.0.0-preview1.1 4,352 10/13/2020
5.0.0-alpha1 555 6/17/2020
4.1.12 367 6/19/2022
4.1.11 452 4/26/2022
4.1.9 26,657 4/6/2021
4.1.8 52,323 1/21/2021
4.1.7 1,119 12/12/2020
4.1.6 153,030 11/15/2020
4.1.5 76,905 9/28/2020
4.1.4 143,690 7/19/2020
4.1.3 395,001 1/31/2020
4.1.2 93,698 11/14/2019
4.1.1 52,505 10/2/2019
4.1.0 8,978 9/26/2019
4.1.0-preview2 2,272 9/4/2019
4.1.0-preview1 825 8/15/2019
4.0.13 322 6/19/2022
4.0.11 462 7/19/2020
4.0.10 38,346 9/9/2019
4.0.9 10,262 8/14/2019
4.0.8 2,129 7/18/2019
4.0.7 122,071 5/21/2019
4.0.6 1,436 4/11/2019
4.0.5 10,636 3/3/2019
4.0.4 66,389 12/6/2018
1.0.0 188,681 5/30/2018
1.0.0-rc1 914 5/8/2018
1.0.0-preview1 2,763 3/22/2018