Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime
9.0.0-rc.2
Prefix Reserved
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 9.0.0-rc.2
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime -Version 9.0.0-rc.2
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="9.0.0-rc.2" />
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime --version 9.0.0-rc.2
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime, 9.0.0-rc.2"
// Install Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime as a Cake Addin #addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=9.0.0-rc.2&prerelease // Install Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime as a Cake Tool #tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime&version=9.0.0-rc.2&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 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. |
.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.0-rc.2)
- Npgsql.NodaTime (>= 8.0.5)
NuGet packages (9)
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 (4)
Showing the top 4 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 & CLI
|
|
linq2db/linq2db.EntityFrameworkCore
Bring power of Linq To DB to Entity Framework Core projects
|
|
SenexCrenshaw/StreamMaster
|
|
NosCoreIO/NosCore
NosCore is a Nostale emulator in c# (.Net 8) using DotNetty / Entity Framework / WebAPI / Autofac / Mapster / Serilog
|
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.2 | 1,204 | 10/13/2024 |
9.0.0-rc.1 | 872 | 9/13/2024 |
9.0.0-preview.7 | 111 | 9/1/2024 |
9.0.0-preview.3 | 335 | 4/12/2024 |
9.0.0-preview.2 | 110 | 3/22/2024 |
9.0.0-preview.1 | 126 | 2/14/2024 |
8.0.10 | 28,481 | 10/17/2024 |
8.0.8 | 55,611 | 9/27/2024 |
8.0.4 | 450,226 | 5/11/2024 |
8.0.2 | 238,301 | 2/17/2024 |
8.0.0 | 253,265 | 11/21/2023 |
8.0.0-rc.2 | 12,782 | 10/11/2023 |
8.0.0-rc.1 | 1,045 | 9/14/2023 |
8.0.0-preview.7 | 273 | 8/18/2023 |
8.0.0-preview.4 | 4,280 | 5/20/2023 |
8.0.0-preview.3 | 160 | 4/24/2023 |
8.0.0-preview.2 | 292 | 3/20/2023 |
8.0.0-preview.1 | 253 | 3/3/2023 |
7.0.18 | 20,924 | 5/11/2024 |
7.0.11 | 280,201 | 9/15/2023 |
7.0.4 | 398,641 | 4/24/2023 |
7.0.3 | 421,382 | 2/15/2023 |
7.0.1 | 283,934 | 12/17/2022 |
7.0.0 | 69,101 | 11/9/2022 |
7.0.0-rc.2 | 2,587 | 10/11/2022 |
7.0.0-rc.1 | 778 | 9/16/2022 |
7.0.0-preview.7 | 740 | 8/9/2022 |
7.0.0-preview.6 | 500 | 7/13/2022 |
7.0.0-preview.5 | 272 | 6/19/2022 |
7.0.0-preview.4 | 423 | 5/11/2022 |
7.0.0-preview.3 | 339 | 4/19/2022 |
7.0.0-preview.2 | 196 | 3/16/2022 |
7.0.0-preview.1 | 482 | 2/17/2022 |
6.0.29 | 14,151 | 5/11/2024 |
6.0.22 | 45,702 | 9/15/2023 |
6.0.8 | 270,669 | 12/17/2022 |
6.0.7 | 337,481 | 9/16/2022 |
6.0.6 | 286,984 | 8/4/2022 |
6.0.5 | 229,104 | 6/19/2022 |
6.0.4 | 253,856 | 4/19/2022 |
6.0.3 | 335,909 | 1/27/2022 |
6.0.2 | 222,954 | 12/22/2021 |
6.0.1 | 97,116 | 12/3/2021 |
6.0.0 | 78,092 | 11/9/2021 |
6.0.0-rc.2 | 1,389 | 10/14/2021 |
6.0.0-rc.1 | 1,144 | 9/24/2021 |
6.0.0-preview7 | 2,355 | 8/16/2021 |
6.0.0-preview6 | 887 | 7/31/2021 |
6.0.0-preview5 | 959 | 7/1/2021 |
6.0.0-preview4 | 946 | 5/27/2021 |
6.0.0-preview3 | 974 | 4/15/2021 |
6.0.0-preview2 | 992 | 3/11/2021 |
6.0.0-preview1 | 973 | 2/16/2021 |
5.0.10 | 355,793 | 9/15/2021 |
5.0.7 | 274,387 | 6/13/2021 |
5.0.6 | 74,939 | 5/11/2021 |
5.0.5.1 | 47,930 | 4/21/2021 |
5.0.5 | 9,272 | 4/16/2021 |
5.0.2 | 314,300 | 1/19/2021 |
5.0.1 | 59,394 | 12/12/2020 |
5.0.0 | 22,422 | 11/15/2020 |
5.0.0-rc2 | 4,237 | 10/15/2020 |
5.0.0-rc1 | 3,950 | 9/14/2020 |
5.0.0-preview8 | 1,048 | 8/27/2020 |
5.0.0-preview7 | 1,077 | 7/22/2020 |
5.0.0-preview6 | 1,671 | 6/26/2020 |
5.0.0-preview5 | 998 | 6/11/2020 |
5.0.0-preview4 | 1,084 | 5/19/2020 |
5.0.0-preview3 | 1,005 | 4/24/2020 |
5.0.0-preview2 | 1,119 | 4/2/2020 |
5.0.0-preview.2.20120.8 | 346 | 3/20/2020 |
3.1.18 | 62,785 | 8/27/2021 |
3.1.11 | 56,868 | 1/21/2021 |
3.1.4 | 337,232 | 5/29/2020 |
3.1.3 | 134,356 | 3/26/2020 |
3.1.2 | 18,700 | 2/20/2020 |
3.1.1 | 27,504 | 1/31/2020 |
3.1.0 | 31,228 | 12/4/2019 |
3.1.0-preview3 | 3,061 | 11/15/2019 |
3.1.0-preview2 | 1,029 | 11/6/2019 |
3.0.1 | 11,492 | 10/2/2019 |
3.0.0 | 7,395 | 9/26/2019 |
3.0.0-preview9 | 2,679 | 9/4/2019 |
3.0.0-preview8 | 1,119 | 8/15/2019 |
3.0.0-preview7 | 1,151 | 7/25/2019 |
3.0.0-preview5 | 1,197 | 5/6/2019 |
3.0.0-preview4 | 1,065 | 4/21/2019 |
3.0.0-preview3 | 1,118 | 3/12/2019 |
3.0.0-preview1 | 1,356 | 12/16/2018 |
2.2.4 | 69,894 | 5/21/2019 |
2.2.0 | 64,044 | 12/7/2018 |
2.1.1 | 207,914 | 7/1/2018 |
2.1.0 | 4,374 | 5/31/2018 |
2.1.0-rc1 | 1,541 | 5/8/2018 |