Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime
10.0.0-preview.3
Prefix Reserved
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 10.0.0-preview.3
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime -Version 10.0.0-preview.3
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="10.0.0-preview.3" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="10.0.0-preview.3" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" />
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 10.0.0-preview.3
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime, 10.0.0-preview.3"
#addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=10.0.0-preview.3&prerelease
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=10.0.0-preview.3&prerelease
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 | Versions Compatible 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 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. 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 is compatible. |
.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. |
-
net10.0
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 10.0.0-preview.3)
- Npgsql.NodaTime (>= 9.0.3)
NuGet packages (11)
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. |
|
LS.Helpers.Hosting
.NET Core helpers for ASP.NET hosting |
|
CockroachDB.EFCore.Provider
Package Description |
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
|
|
NosCoreIO/NosCore
NosCore is a Nostale emulator in c# (.Net 9) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog
|
|
carlreid/StreamMaster
A powerful M3U proxy and stream management platform for Plex DVR, Emby, Jellyfin Live TV (and more)
|
Version | Downloads | Last updated |
---|---|---|
10.0.0-preview.3 | 102 | 22 days ago |
10.0.0-preview.2 | 419 | a month ago |
10.0.0-preview.1 | 103 | 2 months ago |
9.0.4 | 158,978 | 2 months ago |
9.0.3 | 110,902 | 4 months ago |
9.0.2 | 71,643 | 5 months ago |
9.0.1 | 46,749 | 5 months ago |
9.0.0 | 6,713 | 6 months ago |
9.0.0-rc.2 | 3,451 | 7 months ago |
9.0.0-rc.1 | 984 | 8 months ago |
9.0.0-preview.7 | 128 | 8 months ago |
9.0.0-preview.3 | 572 | 4/12/2024 |
9.0.0-preview.2 | 120 | 3/22/2024 |
9.0.0-preview.1 | 147 | 2/14/2024 |
8.0.11 | 156,116 | 6 months ago |
8.0.10 | 234,079 | 7 months ago |
8.0.8 | 178,224 | 7 months ago |
8.0.4 | 656,471 | 5/11/2024 |
8.0.2 | 319,657 | 2/17/2024 |
8.0.0 | 295,876 | 11/21/2023 |
8.0.0-rc.2 | 13,152 | 10/11/2023 |
8.0.0-rc.1 | 1,201 | 9/14/2023 |
8.0.0-preview.7 | 286 | 8/18/2023 |
8.0.0-preview.4 | 4,494 | 5/20/2023 |
8.0.0-preview.3 | 176 | 4/24/2023 |
8.0.0-preview.2 | 310 | 3/20/2023 |
8.0.0-preview.1 | 269 | 3/3/2023 |
7.0.18 | 35,648 | 5/11/2024 |
7.0.11 | 321,996 | 9/15/2023 |
7.0.4 | 427,505 | 4/24/2023 |
7.0.3 | 433,021 | 2/15/2023 |
7.0.1 | 288,390 | 12/17/2022 |
7.0.0 | 71,661 | 11/9/2022 |
7.0.0-rc.2 | 2,609 | 10/11/2022 |
7.0.0-rc.1 | 798 | 9/16/2022 |
7.0.0-preview.7 | 768 | 8/9/2022 |
7.0.0-preview.6 | 522 | 7/13/2022 |
7.0.0-preview.5 | 293 | 6/19/2022 |
7.0.0-preview.4 | 456 | 5/11/2022 |
7.0.0-preview.3 | 364 | 4/19/2022 |
7.0.0-preview.2 | 222 | 3/16/2022 |
7.0.0-preview.1 | 511 | 2/17/2022 |
6.0.29 | 26,623 | 5/11/2024 |
6.0.22 | 51,467 | 9/15/2023 |
6.0.8 | 286,755 | 12/17/2022 |
6.0.7 | 344,381 | 9/16/2022 |
6.0.6 | 293,047 | 8/4/2022 |
6.0.5 | 241,872 | 6/19/2022 |
6.0.4 | 256,765 | 4/19/2022 |
6.0.3 | 353,728 | 1/27/2022 |
6.0.2 | 232,952 | 12/22/2021 |
6.0.1 | 106,274 | 12/3/2021 |
6.0.0 | 78,662 | 11/9/2021 |
6.0.0-rc.2 | 1,420 | 10/14/2021 |
6.0.0-rc.1 | 1,170 | 9/24/2021 |
6.0.0-preview7 | 2,385 | 8/16/2021 |
6.0.0-preview6 | 917 | 7/31/2021 |
6.0.0-preview5 | 989 | 7/1/2021 |
6.0.0-preview4 | 975 | 5/27/2021 |
6.0.0-preview3 | 1,008 | 4/15/2021 |
6.0.0-preview2 | 1,023 | 3/11/2021 |
6.0.0-preview1 | 1,011 | 2/16/2021 |
5.0.10 | 358,196 | 9/15/2021 |
5.0.7 | 274,937 | 6/13/2021 |
5.0.6 | 75,055 | 5/11/2021 |
5.0.5.1 | 48,644 | 4/21/2021 |
5.0.5 | 9,314 | 4/16/2021 |
5.0.2 | 315,017 | 1/19/2021 |
5.0.1 | 59,454 | 12/12/2020 |
5.0.0 | 22,499 | 11/15/2020 |
5.0.0-rc2 | 4,273 | 10/15/2020 |
5.0.0-rc1 | 3,985 | 9/14/2020 |
5.0.0-preview8 | 1,104 | 8/27/2020 |
5.0.0-preview7 | 1,113 | 7/22/2020 |
5.0.0-preview6 | 1,705 | 6/26/2020 |
5.0.0-preview5 | 1,033 | 6/11/2020 |
5.0.0-preview4 | 1,119 | 5/19/2020 |
5.0.0-preview3 | 1,041 | 4/24/2020 |
5.0.0-preview2 | 1,157 | 4/2/2020 |
5.0.0-preview.2.20120.8 | 383 | 3/20/2020 |
3.1.18 | 79,298 | 8/27/2021 |
3.1.11 | 56,949 | 1/21/2021 |
3.1.4 | 337,736 | 5/29/2020 |
3.1.3 | 135,646 | 3/26/2020 |
3.1.2 | 18,750 | 2/20/2020 |
3.1.1 | 28,076 | 1/31/2020 |
3.1.0 | 31,452 | 12/4/2019 |
3.1.0-preview3 | 3,099 | 11/15/2019 |
3.1.0-preview2 | 1,069 | 11/6/2019 |
3.0.1 | 11,666 | 10/2/2019 |
3.0.0 | 7,445 | 9/26/2019 |
3.0.0-preview9 | 2,719 | 9/4/2019 |
3.0.0-preview8 | 1,176 | 8/15/2019 |
3.0.0-preview7 | 1,191 | 7/25/2019 |
3.0.0-preview5 | 1,237 | 5/6/2019 |
3.0.0-preview4 | 1,121 | 4/21/2019 |
3.0.0-preview3 | 1,179 | 3/12/2019 |
3.0.0-preview1 | 1,464 | 12/16/2018 |
2.2.4 | 70,588 | 5/21/2019 |
2.2.0 | 64,176 | 12/7/2018 |
2.1.1 | 208,098 | 7/1/2018 |
2.1.0 | 6,473 | 5/31/2018 |
2.1.0-rc1 | 1,712 | 5/8/2018 |