.NET Standard 2.0 library with OGC extensions methods on geometry (NpgsqlTypes.PostgisGeometry or NetTopologySuite.Geometries.Geometry) instances, providing access to PostGIS functions on server side while using linq2db LINQ to database provider (lightweight ORM).
NpgsqlTypes.PostgisGeometry or NetTopologySuite.Geometries.Geometry gets additional methods, similar to Microsoft.SqlServer.Types.SqlGeometry
OGC Methods on Geometry Instances or
NetTopologySuite plugin for Entity Framework Core for PostgreSQL.
These methods will be translated into PostGIS SQL operations, so evaluation will happen on the server side. Calling these methods on client side results in throwing InvalidOperationException.
Naming convention follows OGC methods names, starting with ST* prefix.
Using extensions methods inside LINQ expression:
using LinqToDBPostGisNpgsqlTypes; // or LinqToDBPostGisNetTopologySuite
using (var db = new PostGisTestDataConnection())
{
NpgsqlTypes.PostgisGeometry point = db.STGeomFromEWKT("SRID=3857;POINT(0 5)"); // For Npgsql 3.x
NetTopologySuite.Geometries.Point point = new Point(new Coordinate(0, 5)) { SRID = 3857 }; // For Npgsql 4.x
var selected = db.Polygons
.Where(p => p.Geometry.STArea() > 150.0)
.OrderBy(p => p.Geometry.STDistance(point))
.ToList();
var nearestCity = db.Cities
.OrderBy(c => c.Geometry.STDistance(point))
.FirstOrDefault();
var stats = db.Cities
.Select(c =>
new
{
Id = c.Id,
Name = c.Name,
Area = c.Geometry.STArea(),
Distance = c.Geometry.STDistance(point),
NumPoints = c.Geometry.STNPoints(),
Srid = c.Geometry.STSrId(),
Wkt = c.Geometry.STAsText(),
})
.ToList();
}[Table("test_geometry", Schema = "public")]
public class PolygonEntity
{
[Column("geom")]
public NpgsqlTypes.PostgisGeometry Geometry { get; set; } // For Npgsql 3.x
public NetTopologySuite.Geometries.Geometry Geometry { get; set; } // For Npgsql 4.x
}
[Table("owm_cities", Schema = "public")]
public class CityEntity
{
[Column("geom")]
public NpgsqlTypes.PostgisGeometry Geometry { get; set; } // For Npgsql 3.x
public NetTopologySuite.Geometries.Geometry Geometry { get; set; } // For Npgsql 4.x
}
class PostGisTestDataConnection : LinqToDB.Data.DataConnection
{
public ITable<PolygonEntity> Polygons { get { return GetTable<PolygonEntity>(); } }
public ITable<CityEntity> Cities { get { return GetTable<CityEntity>(); } }
}Developed using MS Visual Studio 2017. Tested on PostgreSQL version 9.6.1, PostGIS version 3.0.2. Depends on linq2db, Npgsql.
- Make sure you have PostgreSQL DBMS with PostGIS extension installed. Execute
SELECT PostGIS_Full_Version()query to check PostGIS version. - Create new database named "postgistest" (or any other name), add support of spatial features for this database.
- Execute SQL script
Sql\create_tables.sqlin this database. - Open solution
LinqToDBPostGis.slnin Visual Studio. - Check database connection string in
App.configof all projects. - Run application, view table data along with PostGIS functions results in console output.
- Implement full set of PostGIS methods.
- Add support for PostGIS
geographydata type.