Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite 9.0.4
Prefix ReservedSee the version list below for details.
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite --version 9.0.4
NuGet\Install-Package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite -Version 9.0.4
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="9.0.4" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="9.0.4" />Directory.Packages.props
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" />Project file
paket add Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite --version 9.0.4
#r "nuget: Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite, 9.0.4"
#:package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite@9.0.4
#addin nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite&version=9.0.4Install as a Cake Addin
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite&version=9.0.4Install as a Cake Tool
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 PostgreSQLPostGIS 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 theNetTopologySuite library, allowing you to read and write them directly to PostgreSQL.
To use the plugin, simply addUseNetTopologySuite
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 Blogctx.Cities.Add(new(){ Name = "FooCity", Center = new Point(10, 10)});await ctx.SaveChangesAsync();// Query all cities with the given center pointvar 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 theNetTopologySuite plugin documentation page.
Product | VersionsCompatible 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. 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 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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.4)
- Npgsql.NetTopologySuite(>= 9.0.3)
NuGet packages (36)
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 (10)
Showing the top 10 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 Nitro 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, Oracle | |
Squidex/squidex Headless CMS and Content Managment Hub | |
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 | |
loresoft/EntityFrameworkCore.Generator Generate Entity Framework Core model from an existing database | |
zLulus/NotePractice My_Note 笔记练习demo | |
shinyorg/templates dotnet CLI & Visual Studio Templates | |
PhenX/PhenX.EntityFrameworkCore.BulkInsert Super fast bulk insertion for Entity Framework Core on SQL Server, PostgreSQL, Sqlite, MySQL and Oracle |
Version | Downloads | Last Updated |
---|---|---|
10.0.0-rc.1 | 3,755 | 9/10/2025 |
10.0.0-preview.7 | 1,106 | 8/17/2025 |
10.0.0-preview.5 | 3,563 | 6/11/2025 |
10.0.0-preview.3 | 734 | 4/12/2025 |
10.0.0-preview.2 | 455 | 3/24/2025 |
10.0.0-preview.1 | 164 | 3/1/2025 |
9.0.4 | 663,022 | 3/1/2025 |
9.0.3 | 205,832 | 1/17/2025 |
9.0.2 | 144,957 | 12/7/2024 |
9.0.1 | 92,513 | 11/19/2024 |
9.0.0 | 16,614 | 11/18/2024 |
9.0.0-rc.2 | 8,470 | 10/13/2024 |
9.0.0-rc.1 | 2,910 | 9/13/2024 |
9.0.0-preview.7 | 247 | 9/1/2024 |
9.0.0-preview.3 | 7,939 | 4/12/2024 |
9.0.0-preview.2 | 178 | 3/22/2024 |
9.0.0-preview.1 | 668 | 2/14/2024 |
8.0.11 | 453,459 | 11/18/2024 |
8.0.10 | 365,055 | 10/17/2024 |
8.0.8 | 137,159 | 9/27/2024 |
8.0.4 | 1,070,741 | 5/11/2024 |
8.0.2 | 471,144 | 2/17/2024 |
8.0.0 | 517,360 | 11/21/2023 |
8.0.0-rc.2 | 15,253 | 10/11/2023 |
8.0.0-rc.1 | 3,562 | 9/14/2023 |
8.0.0-preview.7 | 6,183 | 8/18/2023 |
8.0.0-preview.4 | 7,319 | 5/20/2023 |
8.0.0-preview.3 | 773 | 4/24/2023 |
8.0.0-preview.2 | 560 | 3/20/2023 |
8.0.0-preview.1 | 600 | 3/3/2023 |
7.0.18 | 68,225 | 5/11/2024 |
7.0.11 | 304,099 | 9/15/2023 |
7.0.4 | 455,934 | 4/24/2023 |
7.0.3 | 1,382,383 | 2/15/2023 |
7.0.1 | 194,480 | 12/17/2022 |
7.0.0 | 177,524 | 11/9/2022 |
7.0.0-rc.2 | 2,209 | 10/11/2022 |
7.0.0-rc.1 | 581 | 9/16/2022 |
7.0.0-preview.7 | 1,565 | 8/9/2022 |
7.0.0-preview.6 | 1,623 | 7/13/2022 |
7.0.0-preview.5 | 2,591 | 6/19/2022 |
7.0.0-preview.4 | 1,985 | 5/11/2022 |
7.0.0-preview.3 | 494 | 4/19/2022 |
7.0.0-preview.2 | 475 | 3/16/2022 |
7.0.0-preview.1 | 341 | 2/17/2022 |
6.0.29 | 68,514 | 5/11/2024 |
6.0.22 | 91,257 | 9/15/2023 |
6.0.8 | 489,615 | 12/17/2022 |
6.0.7 | 673,918 | 9/16/2022 |
6.0.6 | 213,481 | 8/4/2022 |
6.0.5 | 185,390 | 6/19/2022 |
6.0.4 | 283,499 | 4/19/2022 |
6.0.3 | 600,041 | 1/27/2022 |
6.0.2 | 166,160 | 12/22/2021 |
6.0.1 | 35,936 | 12/3/2021 |
6.0.0 | 271,997 | 11/9/2021 |
6.0.0-rc.2 | 11,481 | 10/14/2021 |
6.0.0-rc.1 | 1,163 | 9/24/2021 |
6.0.0-preview7 | 1,833 | 8/16/2021 |
6.0.0-preview6 | 538 | 7/31/2021 |
6.0.0-preview5 | 630 | 7/1/2021 |
6.0.0-preview4 | 620 | 5/27/2021 |
6.0.0-preview3 | 8,520 | 4/15/2021 |
6.0.0-preview2 | 631 | 3/11/2021 |
6.0.0-preview1 | 622 | 2/16/2021 |
5.0.10 | 276,241 | 9/15/2021 |
5.0.7 | 300,290 | 6/13/2021 |
5.0.6 | 179,714 | 5/11/2021 |
5.0.5.1 | 43,707 | 4/21/2021 |
5.0.5 | 18,197 | 4/16/2021 |
5.0.2 | 192,447 | 1/19/2021 |
5.0.1 | 45,832 | 12/12/2020 |
5.0.0 | 78,891 | 11/15/2020 |
5.0.0-rc2 | 6,112 | 10/15/2020 |
5.0.0-rc1 | 4,331 | 9/14/2020 |
5.0.0-preview8 | 641 | 8/27/2020 |
5.0.0-preview7 | 1,804 | 7/22/2020 |
5.0.0-preview6 | 1,225 | 6/26/2020 |
5.0.0-preview5 | 627 | 6/11/2020 |
5.0.0-preview4 | 722 | 5/19/2020 |
5.0.0-preview3 | 937 | 4/24/2020 |
5.0.0-preview2 | 739 | 4/2/2020 |
5.0.0-preview.2.20120.8 | 810 | 3/20/2020 |
3.1.18 | 76,328 | 8/27/2021 |
3.1.11 | 117,289 | 1/21/2021 |
3.1.4 | 404,238 | 5/29/2020 |
3.1.3 | 144,835 | 3/26/2020 |
3.1.2 | 69,037 | 2/20/2020 |
3.1.1 | 51,648 | 1/31/2020 |
3.1.0 | 34,346 | 12/4/2019 |
3.1.0-preview3 | 705 | 11/15/2019 |
3.1.0-preview2 | 664 | 11/6/2019 |
3.0.1 | 17,755 | 10/2/2019 |
3.0.0 | 4,618 | 9/26/2019 |
3.0.0-preview9 | 943 | 9/4/2019 |
3.0.0-preview5 | 1,727 | 5/6/2019 |
3.0.0-preview4 | 720 | 4/21/2019 |
3.0.0-preview3 | 842 | 3/12/2019 |
3.0.0-preview1 | 1,132 | 12/16/2018 |
2.2.4 | 143,914 | 5/21/2019 |
2.2.0 | 149,887 | 12/7/2018 |
2.1.1 | 58,654 | 7/21/2018 |
2.1.0 | 36,962 | 5/31/2018 |
2.1.0-rc1 | 1,158 | 5/8/2018 |
- Last updated3/1/2025
- Project website
- Source repository
- PostgreSQL license
- Download package (60.96 KB)
- Download symbols (17.25 KB)
- Open in NuGet Package Explorer
Open in NuGet Trends
- Report package
npgsqlpostgresqlpostgresEntityFrameworkCoreentity-framework-coreefefcoreormsqlspatialpostgisnts
Copyright 2024 © The Npgsql Development Team