Table of Contents

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

column Column

The spatial column (minuend).

geography Geography

The 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

column Column

The spatial column (minuend).

geometry Geometry

The 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

geography Geography

The geography to subtract from (minuend).

column Column

The 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

geometry Geometry

The geometry to subtract from (minuend).

column Column

The 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

column1 Column

The first spatial column (minuend).

column2 Column

The 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

function Function

A spatial function that returns a geometry to subtract from (minuend).

geometry Geometry

The 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

function Function

A spatial function that returns a geography to subtract from (minuend).

geography Geography

The 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

geometry Geometry

The geometry to subtract from (minuend).

function Function

A 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

geography Geography

The geography to subtract from (minuend).

function Function

A 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

function Function

A spatial function that returns a geometry to subtract from (minuend).

column Column

The 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

column Column

The column containing geometries to subtract from (minuend).

function Function

A 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)

Parameters

function1 Function

A spatial function that returns a geometry to subtract from (minuend).

function2 Function

A spatial function that returns a geometry to subtract (subtrahend).