Npgsql.NetTopologySuite 8.0.5

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.

Showing the top 20 packages that depend on Npgsql.NetTopologySuite.

Packages Downloads
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
30
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
31
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
32
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
35
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
36
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
37
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
38
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
39
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
40
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
43
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
44
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
48
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
49
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
59
Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite
NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.
60

.NET Standard 2.0

Version Downloads Last updated
8.0.5 5 10/14/2024
8.0.4 7 09/12/2024
8.0.3 10 05/22/2024
8.0.2 12 02/20/2024
8.0.1 12 12/08/2023
8.0.0 17 11/21/2023
8.0.0-rtm 11 11/21/2023
8.0.0-rc.2 16 10/13/2023
8.0.0-preview.4 32 06/06/2023
8.0.0-preview.3 39 05/22/2023
8.0.0-preview.2 20 04/04/2023
8.0.0-preview.1 35 04/04/2023
7.0.8 7 09/12/2024
7.0.7 12 05/22/2024
7.0.6 18 09/26/2023
7.0.4 12 06/06/2023
7.0.2 21 04/04/2023
7.0.1 29 01/15/2023
7.0.0 32 12/02/2022
7.0.0-rc.2 22 08/22/2023
7.0.0-rc.1 26 09/22/2022
7.0.0-preview.7 36 08/19/2022
7.0.0-preview.6 27 09/21/2022
7.0.0-preview.5 23 06/13/2023
7.0.0-preview.4 42 09/24/2022
7.0.0-preview.3 85 09/24/2022
7.0.0-preview.2 53 09/21/2022
7.0.0-preview.1 73 09/24/2022
6.0.12 7 09/12/2024
6.0.11 11 05/22/2024
6.0.10 17 09/30/2023
6.0.9 30 04/04/2023
6.0.8 31 01/15/2023
6.0.7 32 09/24/2022
6.0.6 26 09/10/2022
6.0.5 32 09/09/2022
6.0.4 54 09/08/2022
6.0.3 63 06/27/2022
6.0.2 29 09/09/2022
6.0.1 19 09/11/2022
6.0.0 55 09/10/2022
6.0.0-rc.2 39 09/24/2022
6.0.0-rc.1 15 09/24/2022
6.0.0-preview7 43 09/24/2022
6.0.0-preview6 85 09/24/2022
6.0.0-preview5 22 09/24/2022
6.0.0-preview4 22 09/24/2022
6.0.0-preview3 35 09/23/2022
6.0.0-preview2 24 09/21/2022
5.0.18 8 05/22/2024
5.0.17 19 09/28/2023
5.0.16 43 04/04/2023
5.0.15 19 09/22/2022
5.0.14 25 06/06/2023
5.0.13 26 09/21/2022
5.0.12 47 09/24/2022
5.0.11 64 09/24/2022
5.0.10 39 09/22/2022
5.0.7 25 09/09/2022
5.0.5 42 09/13/2022
5.0.4 45 09/10/2022
5.0.3 24 09/09/2022
5.0.2 86 09/09/2022
5.0.1.1 33 09/21/2022
5.0.0 18 09/09/2022
5.0.0-preview1.1 30 09/23/2022
5.0.0-alpha1 84 09/24/2022
4.1.14 9 05/22/2024
4.1.13 8 05/22/2024
4.1.12 23 05/12/2023
4.1.11 38 09/24/2022
4.1.9 65 09/09/2022
4.1.8 35 09/14/2022
4.1.7 35 09/09/2022
4.1.6 33 09/09/2022
4.1.5 81 09/11/2022
4.1.4 31 09/10/2022
4.1.3 48 09/11/2022
4.1.2 90 09/23/2022
4.1.1 70 09/10/2022
4.1.0 26 09/10/2022
4.1.0-preview2 53 09/21/2022
4.1.0-preview1 16 09/17/2022
4.0.17 11 06/11/2024
4.0.16 10 05/22/2024
4.0.15 13 05/22/2024
4.0.14 9 05/22/2024
4.0.13 34 09/24/2022
4.0.11 80 09/24/2022
4.0.10 24 08/22/2023
4.0.9 38 09/10/2022
4.0.8 97 09/07/2022
4.0.7 72 09/13/2022
4.0.6 30 09/09/2022
4.0.5 53 09/09/2022
4.0.4.1 24 09/24/2022
1.0.2 43 09/09/2022
1.0.1 20 09/07/2022
1.0.0 70 09/09/2022
1.0.0-rc1 17 09/24/2022