Table of Contents

Constructor SpatialDisjoint

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

SpatialDisjoint(Column, Geometry)

Initializes a new instance of ST_Disjoint with a column and geometry literal.

public SpatialDisjoint(Column column, Geometry geometry)

Parameters

column Column

The spatial column to test.

geometry Geometry

The geometry to test against.

SpatialDisjoint(Column, Geography)

Initializes a new instance of ST_Disjoint with a column and geography literal.

public SpatialDisjoint(Column column, Geography geography)

Parameters

column Column

The spatial column to test.

geography Geography

The geography to test against.

SpatialDisjoint(Geometry, Column)

Initializes a new instance of ST_Disjoint with a geometry literal and column.

public SpatialDisjoint(Geometry geometry, Column column)

Parameters

geometry Geometry

The geometry to test.

column Column

The spatial column to test against.

SpatialDisjoint(Geography, Column)

Initializes a new instance of ST_Disjoint with a geography literal and column.

public SpatialDisjoint(Geography geography, Column column)

Parameters

geography Geography

The geography to test.

column Column

The spatial column to test against.

SpatialDisjoint(Column, Column)

Initializes a new instance of ST_Disjoint with two columns for spatial joins.

public SpatialDisjoint(Column column1, Column column2)

Parameters

column1 Column

The first spatial column to test.

column2 Column

The second spatial column to test against.

SpatialDisjoint(Function, Geometry)

Initializes a new instance of ST_Disjoint with a function result and Geometry literal for function chaining.

public SpatialDisjoint(Function function, Geometry geometry)

Parameters

function Function

A spatial function that returns a geometry to test.

geometry Geometry

The geometry to test for disjointness.

SpatialDisjoint(Function, Geography)

Initializes a new instance of ST_Disjoint with a function result and Geography literal for function chaining.

public SpatialDisjoint(Function function, Geography geography)

Parameters

function Function

A spatial function that returns a geography to test.

geography Geography

The geography to test for disjointness.

SpatialDisjoint(Geometry, Function)

Initializes a new instance of ST_Disjoint with a Geometry literal and function result for function chaining.

public SpatialDisjoint(Geometry geometry, Function function)

Parameters

geometry Geometry

The geometry to test.

function Function

A spatial function that returns a geometry to test for disjointness.

SpatialDisjoint(Geography, Function)

Initializes a new instance of ST_Disjoint with a Geography literal and function result for function chaining.

public SpatialDisjoint(Geography geography, Function function)

Parameters

geography Geography

The geography to test.

function Function

A spatial function that returns a geography to test for disjointness.

SpatialDisjoint(Function, Column)

Initializes a new instance of ST_Disjoint with a function result and column for function chaining.

public SpatialDisjoint(Function function, Column column)

Parameters

function Function

A spatial function that returns a geometry to test.

column Column

The column containing geometries to test for disjointness.

SpatialDisjoint(Column, Function)

Initializes a new instance of ST_Disjoint with a column and function result for function chaining.

public SpatialDisjoint(Column column, Function function)

Parameters

column Column

The column containing geometries to test.

function Function

A spatial function that returns a geometry to test for disjointness.

SpatialDisjoint(Function, Function)

Initializes a new instance of ST_Disjoint with two function results for function chaining.

public SpatialDisjoint(Function function1, Function function2)

Parameters

function1 Function

A spatial function that returns a geometry to test.

function2 Function

A spatial function that returns a geometry to test for disjointness.