Constructor SpatialIntersection
- Namespace
- YndigoBlue.Velocity.Functions
- Assembly
- YndigoBlue.Velocity.dll
SpatialIntersection(Column, Geometry)
Initializes a new instance of ST_Intersection with a column and geometry literal.
public SpatialIntersection(Column column, Geometry geometry)
Parameters
columnColumnThe spatial column.
geometryGeometryThe geometry to intersect with.
SpatialIntersection(Column, Geography)
Initializes a new instance of ST_Intersection with a column and geography literal.
public SpatialIntersection(Column column, Geography geography)
Parameters
SpatialIntersection(Geometry, Column)
Initializes a new instance of ST_Intersection with a geometry literal and column.
public SpatialIntersection(Geometry geometry, Column column)
Parameters
geometryGeometryThe geometry to intersect.
columnColumnThe spatial column to intersect with.
SpatialIntersection(Geography, Column)
Initializes a new instance of ST_Intersection with a geography literal and column.
public SpatialIntersection(Geography geography, Column column)
Parameters
SpatialIntersection(Column, Column)
Initializes a new instance of ST_Intersection with two columns for spatial joins.
public SpatialIntersection(Column column1, Column column2)
Parameters
column1ColumnThe first spatial column.
column2ColumnThe second spatial column to intersect with.
SpatialIntersection(Function, Geometry)
Initializes a new instance of ST_Intersection with a function result and Geometry literal for function chaining.
public SpatialIntersection(Function function, Geometry geometry)
Parameters
functionFunctionA spatial function that returns a geometry to intersect.
geometryGeometryThe geometry to intersect with.
SpatialIntersection(Function, Geography)
Initializes a new instance of ST_Intersection with a function result and Geography literal for function chaining.
public SpatialIntersection(Function function, Geography geography)
Parameters
functionFunctionA spatial function that returns a geography to intersect.
geographyGeographyThe geography to intersect with.
SpatialIntersection(Geometry, Function)
Initializes a new instance of ST_Intersection with a Geometry literal and function result for function chaining.
public SpatialIntersection(Geometry geometry, Function function)
Parameters
geometryGeometryThe geometry to intersect.
functionFunctionA spatial function that returns a geometry to intersect with.
SpatialIntersection(Geography, Function)
Initializes a new instance of ST_Intersection with a Geography literal and function result for function chaining.
public SpatialIntersection(Geography geography, Function function)
Parameters
geographyGeographyThe geography to intersect.
functionFunctionA spatial function that returns a geography to intersect with.
SpatialIntersection(Function, Column)
Initializes a new instance of ST_Intersection with a function result and column for function chaining.
public SpatialIntersection(Function function, Column column)
Parameters
functionFunctionA spatial function that returns a geometry to intersect.
columnColumnThe column containing geometries to intersect with.
SpatialIntersection(Column, Function)
Initializes a new instance of ST_Intersection with a column and function result for function chaining.
public SpatialIntersection(Column column, Function function)
Parameters
columnColumnThe column containing geometries to intersect.
functionFunctionA spatial function that returns a geometry to intersect with.
SpatialIntersection(Function, Function)
Initializes a new instance of ST_Intersection with two function results for function chaining.
public SpatialIntersection(Function function1, Function function2)