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