Npgsql.NetTopologySuite 9.0.3

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

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

Npgsql is the open source .NET data provider for PostgreSQL. It allows you to connect and interact with PostgreSQL server using .NET.

This package is an Npgsql 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 NetTopologySuite plugin, add a dependency on this package and create a NpgsqlDataSource.

using Npgsql;
using NetTopologySuite.Geometries;

var dataSourceBuilder = new NpgsqlDataSourceBuilder(ConnectionString);

dataSourceBuilder.UseNetTopologySuite();

var dataSource = dataSourceBuilder.Build();
var conn = await dataSource.OpenConnectionAsync();

var point = new Point(new Coordinate(1d, 1d));
conn.ExecuteNonQuery("CREATE TEMP TABLE data (geom GEOMETRY)");
using (var cmd = new NpgsqlCommand("INSERT INTO data (geom) VALUES (@p)", conn))
{
    cmd.Parameters.AddWithValue("@p", point);
    cmd.ExecuteNonQuery();
}

using (var cmd = new NpgsqlCommand("SELECT geom FROM data", conn))
using (var reader = cmd.ExecuteReader())
{
    reader.Read();
    Assert.That(reader[0], Is.EqualTo(point));
}

For more information, visit the NetTopologySuite plugin documentation page.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (26)

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

Package Downloads
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite

NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.

Weasel.Postgresql

Npgsql Helpers and Postgresql Schema Migration Tool, spin off of Marten

FreeSql.Provider.PostgreSQL

FreeSql 数据库实现,基于 PostgreSQL 9.5

Mars.Core

The runtime core provides step-based execution for multi-agent simulations in distributed environments as well as polyglot result output with different output types such as (MongoDB, PostgreSQL, Redis, CSV, GeoJson Socket, ...). For furher details please use the documentation: https://www.mars-group.org/docs/tutorial/intro

learun.database

力软ORM

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on Npgsql.NetTopologySuite:

Repository Stars
dotnetcore/FreeSql
.NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine orm, QuestDB orm, MsAccess orm.
npgsql/efcore.pg
Entity Framework Core provider for PostgreSQL
TeslaFly01/SmartSqlT
🔥🔥🔥 SmartSQL 是一款方便、快捷的数据库文档查询、导出工具!该工具从最初支持CHM文档格式开始,通过不断地探索开发、集思广益和不断改进,又陆续支持Word、Excel、PDF、Html、Xml、Json、MarkDown等文档格式的导出。同时支持SqlServer、MySql、PostgreSQL、SQLite等多种数据库的文档查询和导出功能。
shesha-io/shesha-framework
An open-source Low-Code development framework for .NET developers. Create .NET based business applications with 80% less code.
victor-wiki/DatabaseManager
A simple tool for databases : SqlServer, MySql, Oracle, Postgres and SQLite
Version Downloads Last updated
9.0.3 7,871 2/24/2025
9.0.2 159,029 12/7/2024
9.0.1 50,737 11/19/2024
9.0.0 7,994 11/18/2024
8.0.7 467 2/24/2025
8.0.6 291,361 11/18/2024
8.0.5 194,055 10/13/2024
8.0.4 93,997 9/10/2024
8.0.3 1,283,772 5/9/2024
8.0.2 431,037 2/10/2024
8.0.1 29,968 12/4/2023
8.0.0 405,748 11/21/2023
8.0.0-rtm 155 11/20/2023
8.0.0-rc.2 16,903 10/11/2023
8.0.0-preview.4 18,267 5/17/2023
8.0.0-preview.3 6,459 4/24/2023
8.0.0-preview.2 698 3/20/2023
8.0.0-preview.1 876 3/3/2023
7.0.9 993 11/18/2024
7.0.8 4,161 9/10/2024
7.0.7 92,469 5/9/2024
7.0.6 311,314 9/14/2023
7.0.4 491,372 4/24/2023
7.0.2 1,048,256 2/15/2023
7.0.1 222,875 12/17/2022
7.0.0 237,356 11/9/2022
7.0.0-rc.2 2,953 10/11/2022
7.0.0-rc.1 793 9/16/2022
7.0.0-preview.7 9,035 8/9/2022
7.0.0-preview.6 1,875 7/13/2022
7.0.0-preview.5 2,848 6/19/2022
7.0.0-preview.4 2,111 5/11/2022
7.0.0-preview.3 760 4/19/2022
7.0.0-preview.2 687 3/16/2022
7.0.0-preview.1 311 2/17/2022
6.0.13 1,248 11/18/2024
6.0.12 3,200 9/10/2024
6.0.11 66,957 5/9/2024
6.0.10 118,130 9/14/2023
6.0.9 67,922 2/15/2023
6.0.8 417,662 12/17/2022
6.0.7 732,461 9/16/2022
6.0.6 255,687 8/4/2022
6.0.5 227,404 6/19/2022
6.0.4 338,830 4/19/2022
6.0.3 755,551 1/27/2022
6.0.2 217,446 12/20/2021
6.0.1 47,716 12/3/2021
6.0.0 279,940 11/9/2021
6.0.0-rc.2 11,602 10/14/2021
6.0.0-rc.1 1,315 9/24/2021
6.0.0-preview7 1,934 8/16/2021
6.0.0-preview6 567 7/31/2021
6.0.0-preview5 1,342 7/1/2021
6.0.0-preview4 608 5/27/2021
6.0.0-preview3 8,601 4/15/2021
6.0.0-preview2 663 3/11/2021
5.0.18 3,139 5/9/2024
5.0.17 806 9/14/2023
5.0.16 1,906 2/15/2023
5.0.15 2,672 9/16/2022
5.0.14 6,843 6/19/2022
5.0.13 2,323 4/26/2022
5.0.12 5,512 2/1/2022
5.0.11 259,865 11/12/2021
5.0.10 324,900 9/15/2021
5.0.7 305,742 6/13/2021
5.0.5 193,782 5/11/2021
5.0.4 76,931 3/25/2021
5.0.3 248,546 1/26/2021
5.0.2 223,698 1/19/2021
5.0.1.1 52,751 12/12/2020
5.0.0 99,618 11/15/2020
5.0.0-preview1.1 6,353 10/13/2020
5.0.0-alpha1 471 6/17/2020
4.1.14 681 5/18/2024
4.1.13 3,991 5/9/2024
4.1.12 26,392 6/19/2022
4.1.11 1,377 4/26/2022
4.1.9 96,725 4/6/2021
4.1.8 107,386 1/21/2021
4.1.7 16,158 12/12/2020
4.1.6 30,773 11/15/2020
4.1.5 59,475 9/28/2020
4.1.4 82,172 7/19/2020
4.1.3 701,606 1/31/2020
4.1.2 59,962 11/14/2019
4.1.1 25,703 10/2/2019
4.1.0 33,186 9/26/2019
4.1.0-preview2 1,012 9/4/2019
4.1.0-preview1 556 8/15/2019
4.0.17 214 6/10/2024
4.0.16 176 5/18/2024
4.0.15 133 5/18/2024
4.0.14 142 5/9/2024
4.0.13 1,253 6/19/2022
4.0.11 4,333 7/19/2020
4.0.10 11,590 9/9/2019
4.0.9 10,952 8/14/2019
4.0.8 1,970 7/18/2019
4.0.7 23,704 5/21/2019
4.0.6 19,672 4/11/2019
4.0.5 21,238 3/3/2019
4.0.4.1 288,734 12/7/2018
1.0.2 66,216 7/20/2018
1.0.1 29,181 5/31/2018
1.0.0 2,147 5/30/2018
1.0.0-rc1 1,151 5/8/2018