Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
8.0.10
Prefix Reserved
See the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite --version 8.0.10
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite -Version 8.0.10
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.10" />
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite --version 8.0.10
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite, 8.0.10"
// Install Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite as a Cake Addin #addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite&version=8.0.10 // Install Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite as a Cake Tool #tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite&version=8.0.10
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 interact with spatial data provided by the PostgreSQL PostGIS extension; PostGIS is a mature, standard extension considered to provide top-of-the-line database spatial features. On the .NET side, the plugin adds support for the types from the NetTopologySuite library, allowing you to read and write them directly to PostgreSQL.
To use the plugin, simply add UseNetTopologySuite
as below and use NetTopologySuite types in your entity properties:
await using var ctx = new BlogContext();
await ctx.Database.EnsureDeletedAsync();
await ctx.Database.EnsureCreatedAsync();
// Insert a Blog
ctx.Cities.Add(new()
{
Name = "FooCity",
Center = new Point(10, 10)
});
await ctx.SaveChangesAsync();
// Query all cities with the given center point
var newBlogs = await ctx.Cities.Where(b => b.Center == new Point(10, 10)).ToListAsync();
public class BlogContext : DbContext
{
public DbSet<City> Cities { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
=> optionsBuilder.UseNpgsql(
@"Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase",
o => o.UseNetTopologySuite());
}
public class City
{
public int Id { get; set; }
public string Name { get; set; }
public Point Center { get; set; }
}
The plugin also supports translating many NetTopologySuite methods and properties into corresponding PostGIS operations. For more information, see the NetTopologySuite 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 (>= 8.0.10)
- Npgsql.NetTopologySuite (>= 8.0.5)
NuGet packages (25)
Showing the top 5 NuGet packages that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite:
Package | Downloads |
---|---|
CoreMore
Package Description |
|
EFCore.Sharding.PostgreSql
Package Description |
|
NeuroSpeech.EFCoreLiveMigration.PostGreSql
Package Description |
|
SER.Graphql.Reflection.NetCore
This is a complement to graphql-dotnet (https://github.com/graphql-dotnet/graphql-dotnet) to avoid boilerplate |
|
EntityFrameworkCore.Generator.Core
.NET Core command-line (CLI) tool to generate Entity Framework Core source files. |
GitHub repositories (7)
Showing the top 5 popular GitHub repositories that depend on Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite:
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 Banana Cake Pop the awesome Monaco based GraphQL IDE.
|
|
borisdj/EFCore.BulkExtensions
Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite
|
|
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
|
|
abpframework/abp-samples
Sample solutions built with the ABP Framework
|
|
Coldairarrow/EFCore.Sharding
Database Sharding For EFCore
|
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.2 | 796 | 10/13/2024 |
9.0.0-rc.1 | 2,115 | 9/13/2024 |
9.0.0-preview.7 | 120 | 9/1/2024 |
9.0.0-preview.3 | 6,069 | 4/12/2024 |
9.0.0-preview.2 | 108 | 3/22/2024 |
9.0.0-preview.1 | 191 | 2/14/2024 |
8.0.10 | 10,399 | 10/17/2024 |
8.0.8 | 31,286 | 9/27/2024 |
8.0.4 | 438,696 | 5/11/2024 |
8.0.2 | 295,260 | 2/17/2024 |
8.0.0 | 326,600 | 11/21/2023 |
8.0.0-rc.2 | 15,174 | 10/11/2023 |
8.0.0-rc.1 | 2,299 | 9/14/2023 |
8.0.0-preview.7 | 5,940 | 8/18/2023 |
8.0.0-preview.4 | 5,803 | 5/20/2023 |
8.0.0-preview.3 | 684 | 4/24/2023 |
8.0.0-preview.2 | 444 | 3/20/2023 |
8.0.0-preview.1 | 486 | 3/3/2023 |
7.0.18 | 30,088 | 5/11/2024 |
7.0.11 | 245,054 | 9/15/2023 |
7.0.4 | 387,589 | 4/24/2023 |
7.0.3 | 856,318 | 2/15/2023 |
7.0.1 | 178,328 | 12/17/2022 |
7.0.0 | 162,974 | 11/9/2022 |
7.0.0-rc.2 | 2,107 | 10/11/2022 |
7.0.0-rc.1 | 483 | 9/16/2022 |
7.0.0-preview.7 | 1,458 | 8/9/2022 |
7.0.0-preview.6 | 1,518 | 7/13/2022 |
7.0.0-preview.5 | 1,887 | 6/19/2022 |
7.0.0-preview.4 | 1,277 | 5/11/2022 |
7.0.0-preview.3 | 375 | 4/19/2022 |
7.0.0-preview.2 | 355 | 3/16/2022 |
7.0.0-preview.1 | 223 | 2/17/2022 |
6.0.29 | 19,445 | 5/11/2024 |
6.0.22 | 76,152 | 9/15/2023 |
6.0.8 | 408,849 | 12/17/2022 |
6.0.7 | 635,153 | 9/16/2022 |
6.0.6 | 194,759 | 8/4/2022 |
6.0.5 | 161,826 | 6/19/2022 |
6.0.4 | 269,281 | 4/19/2022 |
6.0.3 | 567,567 | 1/27/2022 |
6.0.2 | 153,323 | 12/22/2021 |
6.0.1 | 34,606 | 12/3/2021 |
6.0.0 | 239,675 | 11/9/2021 |
6.0.0-rc.2 | 11,318 | 10/14/2021 |
6.0.0-rc.1 | 1,054 | 9/24/2021 |
6.0.0-preview7 | 1,688 | 8/16/2021 |
6.0.0-preview6 | 385 | 7/31/2021 |
6.0.0-preview5 | 484 | 7/1/2021 |
6.0.0-preview4 | 479 | 5/27/2021 |
6.0.0-preview3 | 8,371 | 4/15/2021 |
6.0.0-preview2 | 480 | 3/11/2021 |
6.0.0-preview1 | 475 | 2/16/2021 |
5.0.10 | 252,219 | 9/15/2021 |
5.0.7 | 247,635 | 6/13/2021 |
5.0.6 | 176,057 | 5/11/2021 |
5.0.5.1 | 43,055 | 4/21/2021 |
5.0.5 | 17,314 | 4/16/2021 |
5.0.2 | 188,667 | 1/19/2021 |
5.0.1 | 44,745 | 12/12/2020 |
5.0.0 | 76,347 | 11/15/2020 |
5.0.0-rc2 | 5,954 | 10/15/2020 |
5.0.0-rc1 | 4,090 | 9/14/2020 |
5.0.0-preview8 | 481 | 8/27/2020 |
5.0.0-preview7 | 1,646 | 7/22/2020 |
5.0.0-preview6 | 1,073 | 6/26/2020 |
5.0.0-preview5 | 477 | 6/11/2020 |
5.0.0-preview4 | 562 | 5/19/2020 |
5.0.0-preview3 | 778 | 4/24/2020 |
5.0.0-preview2 | 566 | 4/2/2020 |
5.0.0-preview.2.20120.8 | 678 | 3/20/2020 |
3.1.18 | 67,657 | 8/27/2021 |
3.1.11 | 102,555 | 1/21/2021 |
3.1.4 | 394,313 | 5/29/2020 |
3.1.3 | 120,486 | 3/26/2020 |
3.1.2 | 67,252 | 2/20/2020 |
3.1.1 | 50,875 | 1/31/2020 |
3.1.0 | 33,255 | 12/4/2019 |
3.1.0-preview3 | 545 | 11/15/2019 |
3.1.0-preview2 | 507 | 11/6/2019 |
3.0.1 | 17,234 | 10/2/2019 |
3.0.0 | 4,352 | 9/26/2019 |
3.0.0-preview9 | 778 | 9/4/2019 |
3.0.0-preview5 | 1,557 | 5/6/2019 |
3.0.0-preview4 | 562 | 4/21/2019 |
3.0.0-preview3 | 669 | 3/12/2019 |
3.0.0-preview1 | 867 | 12/16/2018 |
2.2.4 | 139,450 | 5/21/2019 |
2.2.0 | 143,539 | 12/7/2018 |
2.1.1 | 57,243 | 7/21/2018 |
2.1.0 | 28,691 | 5/31/2018 |
2.1.0-rc1 | 861 | 5/8/2018 |