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