Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite 7.0.3

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

// Install Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite as a Cake Tool
#tool nuget:?package=Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite&version=7.0.3

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
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (12)

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

Package Downloads
EntityFrameworkCore.BootKit

EntityFrameworkCore Boot Kit (EFBK) is a quick start database connecter for using EntityFrameworkCore. Support variety of databases such as Sqlite, MySql, SqlServer, PostgreSql, MongoDb, Amazon Redshift, AWS Aurora and Memory database.

CoreMore

Package Description

SER.Graphql.Reflection.NetCore

This is a complement to graphql-dotnet (https://github.com/graphql-dotnet/graphql-dotnet) to avoid boilerplate

NeuroSpeech.EFCoreLiveMigration.PostGreSql

Package Description

EFCore.Sharding.PostgreSql

Package Description

GitHub repositories (5)

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.
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization for EF Core
abpframework/abp-samples
Sample solutions built with the ABP Framework
Coldairarrow/EFCore.Sharding
Database Sharding For EFCore
zLulus/NotePractice
My_Note 笔记练习demo
Version Downloads Last updated
8.0.0-preview.1 79 3/3/2023
7.0.3 16,058 2/15/2023
7.0.1 41,970 12/17/2022
7.0.0 35,051 11/9/2022
7.0.0-rc.2 1,825 10/11/2022
7.0.0-rc.1 271 9/16/2022
7.0.0-preview.7 1,377 8/9/2022
7.0.0-preview.6 1,383 7/13/2022
7.0.0-preview.5 1,038 6/19/2022
7.0.0-preview.4 700 5/11/2022
7.0.0-preview.3 296 4/19/2022
7.0.0-preview.2 269 3/16/2022
7.0.0-preview.1 144 2/17/2022
6.0.8 23,601 12/17/2022
6.0.7 341,687 9/16/2022
6.0.6 120,394 8/4/2022
6.0.5 106,378 6/19/2022
6.0.4 178,633 4/19/2022
6.0.3 460,310 1/27/2022
6.0.2 75,821 12/22/2021
6.0.1 27,839 12/3/2021
6.0.0 56,287 11/9/2021
6.0.0-rc.2 11,100 10/14/2021
6.0.0-rc.1 985 9/24/2021
6.0.0-preview7 1,545 8/16/2021
6.0.0-preview6 271 7/31/2021
6.0.0-preview5 338 7/1/2021
6.0.0-preview4 356 5/27/2021
6.0.0-preview3 7,981 4/15/2021
6.0.0-preview2 332 3/11/2021
6.0.0-preview1 338 2/16/2021
5.0.10 169,110 9/15/2021
5.0.7 197,693 6/13/2021
5.0.6 155,142 5/11/2021
5.0.5.1 36,753 4/21/2021
5.0.5 13,380 4/16/2021
5.0.2 162,428 1/19/2021
5.0.1 42,977 12/12/2020
5.0.0 59,437 11/15/2020
5.0.0-rc2 5,821 10/15/2020
5.0.0-rc1 3,431 9/14/2020
5.0.0-preview8 342 8/27/2020
5.0.0-preview7 1,520 7/22/2020
5.0.0-preview6 960 6/26/2020
5.0.0-preview5 350 6/11/2020
5.0.0-preview4 409 5/19/2020
5.0.0-preview3 668 4/24/2020
5.0.0-preview2 443 4/2/2020
5.0.0-preview.2.20120.8 606 3/20/2020
3.1.18 32,100 8/27/2021
3.1.11 80,395 1/21/2021
3.1.4 357,159 5/29/2020
3.1.3 96,709 3/26/2020
3.1.2 62,065 2/20/2020
3.1.1 50,368 1/31/2020
3.1.0 28,709 12/4/2019
3.1.0-preview3 415 11/15/2019
3.1.0-preview2 386 11/6/2019
3.0.1 14,998 10/2/2019
3.0.0 3,847 9/26/2019
3.0.0-preview9 641 9/4/2019
3.0.0-preview5 1,435 5/6/2019
3.0.0-preview4 459 4/21/2019
3.0.0-preview3 540 3/12/2019
3.0.0-preview1 735 12/16/2018
2.2.4 121,245 5/21/2019
2.2.0 125,467 12/7/2018
2.1.1 54,421 7/21/2018
2.1.0 24,094 5/31/2018
2.1.0-rc1 757 5/8/2018