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