Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime 7.0.4

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.EntityFrameworkCore.PostgreSQL.NodaTime --version 7.0.4
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime -Version 7.0.4
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.EntityFrameworkCore.PostgreSQL.NodaTime" Version="7.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 7.0.4
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime, 7.0.4"
#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.EntityFrameworkCore.PostgreSQL.NodaTime as a Cake Addin
#addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=7.0.4

// Install Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime as a Cake Tool
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=7.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.

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 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. 
.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. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

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

Package Downloads
devprime.stack.state

DevPrime State

SvrdSdk.AspNetCore

Package Description

LS.Helpers.Hosting

.NET Core helpers for ASP.NET hosting

EasyDesk.CleanArchitecture.Dal.PostgreSql

Utilities for the SqlServer data access layer of the clean architecture as seen by EasyDesk.

mdimai666.Blast.Host

Blast Host classes and models for reusage and plugins

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime:

Repository Stars
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio
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.4 54 5/20/2023
8.0.0-preview.3 101 4/24/2023
8.0.0-preview.2 198 3/20/2023
8.0.0-preview.1 193 3/3/2023
7.0.4 37,380 4/24/2023
7.0.3 101,447 2/15/2023
7.0.1 125,842 12/17/2022
7.0.0 41,953 11/9/2022
7.0.0-rc.2 2,361 10/11/2022
7.0.0-rc.1 710 9/16/2022
7.0.0-preview.7 676 8/9/2022
7.0.0-preview.6 455 7/13/2022
7.0.0-preview.5 221 6/19/2022
7.0.0-preview.4 356 5/11/2022
7.0.0-preview.3 290 4/19/2022
7.0.0-preview.2 141 3/16/2022
7.0.0-preview.1 418 2/17/2022
6.0.8 70,609 12/17/2022
6.0.7 190,464 9/16/2022
6.0.6 226,122 8/4/2022
6.0.5 164,312 6/19/2022
6.0.4 221,552 4/19/2022
6.0.3 215,445 1/27/2022
6.0.2 154,137 12/22/2021
6.0.1 53,019 12/3/2021
6.0.0 62,610 11/9/2021
6.0.0-rc.2 1,163 10/14/2021
6.0.0-rc.1 1,097 9/24/2021
6.0.0-preview7 1,734 8/16/2021
6.0.0-preview6 267 7/31/2021
6.0.0-preview5 341 7/1/2021
6.0.0-preview4 349 5/27/2021
6.0.0-preview3 354 4/15/2021
6.0.0-preview2 305 3/11/2021
6.0.0-preview1 300 2/16/2021
5.0.10 337,074 9/15/2021
5.0.7 265,667 6/13/2021
5.0.6 73,259 5/11/2021
5.0.5.1 44,479 4/21/2021
5.0.5 8,291 4/16/2021
5.0.2 306,237 1/19/2021
5.0.1 58,372 12/12/2020
5.0.0 21,576 11/15/2020
5.0.0-rc2 4,161 10/15/2020
5.0.0-rc1 3,272 9/14/2020
5.0.0-preview8 420 8/27/2020
5.0.0-preview7 463 7/22/2020
5.0.0-preview6 1,003 6/26/2020
5.0.0-preview5 347 6/11/2020
5.0.0-preview4 420 5/19/2020
5.0.0-preview3 385 4/24/2020
5.0.0-preview2 479 4/2/2020
5.0.0-preview.2.20120.8 289 3/20/2020
3.1.18 28,098 8/27/2021
3.1.11 37,182 1/21/2021
3.1.4 330,024 5/29/2020
3.1.3 133,122 3/26/2020
3.1.2 17,712 2/20/2020
3.1.1 24,626 1/31/2020
3.1.0 26,452 12/4/2019
3.1.0-preview3 2,419 11/15/2019
3.1.0-preview2 367 11/6/2019
3.0.1 10,490 10/2/2019
3.0.0 6,711 9/26/2019
3.0.0-preview9 2,039 9/4/2019
3.0.0-preview8 495 8/15/2019
3.0.0-preview7 489 7/25/2019
3.0.0-preview5 557 5/6/2019
3.0.0-preview4 446 4/21/2019
3.0.0-preview3 487 3/12/2019
3.0.0-preview1 749 12/16/2018
2.2.4 66,491 5/21/2019
2.2.0 62,855 12/7/2018
2.1.1 206,932 7/1/2018
2.1.0 2,979 5/31/2018
2.1.0-rc1 821 5/8/2018