Constructor SpatialCovers
- Namespace
- YndigoBlue.Velocity.Functions
- Assembly
- YndigoBlue.Velocity.dll
SpatialCovers(Column, Geometry)
Initializes a new instance of ST_Covers with a column and geometry literal.
public SpatialCovers(Column column, Geometry geometry)
Parameters
columnColumnThe spatial column to test.
geometryGeometryThe geometry to test if it is covered by the column.
SpatialCovers(Column, Geography)
Initializes a new instance of ST_Covers with a column and geography literal.
public SpatialCovers(Column column, Geography geogpraphy)
Parameters
columnColumnThe spatial column to test.
geogpraphyGeographyThe geography to test if it is covered by the column.
SpatialCovers(Geometry, Column)
Initializes a new instance of ST_Covers with a geometry literal and column.
public SpatialCovers(Geometry geometry, Column column)
Parameters
geometryGeometryThe geometry to test.
columnColumnThe spatial column to test if it is covered by the geometry.
SpatialCovers(Geography, Column)
Initializes a new instance of ST_Covers with a geography literal and column.
public SpatialCovers(Geography geogpraphy, Column column)
Parameters
geogpraphyGeographyThe geography to test.
columnColumnThe spatial column to test if it is covered by the geography.
SpatialCovers(Column, Column)
Initializes a new instance of ST_Covers with two columns for spatial joins.
public SpatialCovers(Column column1, Column column2)
Parameters
column1ColumnThe first spatial column (covering geometry).
column2ColumnThe second spatial column (covered geometry).
SpatialCovers(Function, Geometry)
Initializes a new instance of ST_Covers with a function result and Geometry literal for function chaining.
public SpatialCovers(Function function, Geometry geometry)
Parameters
functionFunctionA spatial function that returns a geometry to test as covering.
geometryGeometryThe geometry to test if it is covered.
SpatialCovers(Function, Geography)
Initializes a new instance of ST_Covers with a function result and Geography literal for function chaining.
public SpatialCovers(Function function, Geography geography)
Parameters
functionFunctionA spatial function that returns a geography to test as covering.
geographyGeographyThe geography to test if it is covered.
SpatialCovers(Geometry, Function)
Initializes a new instance of ST_Covers with a Geometry literal and function result for function chaining.
public SpatialCovers(Geometry geometry, Function function)
Parameters
geometryGeometryThe geometry to test as covering.
functionFunctionA spatial function that returns a geometry to test if it is covered.
SpatialCovers(Geography, Function)
Initializes a new instance of ST_Covers with a Geography literal and function result for function chaining.
public SpatialCovers(Geography geography, Function function)
Parameters
geographyGeographyThe geography to test as covering.
functionFunctionA spatial function that returns a geography to test if it is covered.
SpatialCovers(Function, Column)
Initializes a new instance of ST_Covers with a function result and column for function chaining.
public SpatialCovers(Function function, Column column)
Parameters
functionFunctionA spatial function that returns a geometry to test as covering.
columnColumnThe column containing geometries to test if they are covered.
SpatialCovers(Column, Function)
Initializes a new instance of ST_Covers with a column and function result for function chaining.
public SpatialCovers(Column column, Function function)
Parameters
columnColumnThe column containing geometries to test as covering.
functionFunctionA spatial function that returns a geometry to test if it is covered.
SpatialCovers(Function, Function)
Initializes a new instance of ST_Covers with two function results for function chaining.
public SpatialCovers(Function function1, Function function2)