Share via


SqlSpatialServices.Disjoint Method

Definition

Overloads

Disjoint(DbGeography, DbGeography)

Determines whether the two given DbGeography values are spatially disjoint.

Disjoint(DbGeometry, DbGeometry)

Determines whether the two given DbGeometry values are spatially disjoint.

Disjoint(DbGeography, DbGeography)

Determines whether the two given DbGeography values are spatially disjoint.

public override bool Disjoint (System.Data.Entity.Spatial.DbGeography geographyValue, System.Data.Entity.Spatial.DbGeography otherGeography);
override this.Disjoint : System.Data.Entity.Spatial.DbGeography * System.Data.Entity.Spatial.DbGeography -> bool
Public Overrides Function Disjoint (geographyValue As DbGeography, otherGeography As DbGeography) As Boolean

Parameters

geographyValue
DbGeography

The first geography value to compare for disjointness.

otherGeography
DbGeography

The second geography value to compare for disjointness.

Returns

true if geographyValue is disjoint from otherGeography; otherwise false.

Applies to

Disjoint(DbGeometry, DbGeometry)

Determines whether the two given DbGeometry values are spatially disjoint.

public override bool Disjoint (System.Data.Entity.Spatial.DbGeometry geometryValue, System.Data.Entity.Spatial.DbGeometry otherGeometry);
override this.Disjoint : System.Data.Entity.Spatial.DbGeometry * System.Data.Entity.Spatial.DbGeometry -> bool
Public Overrides Function Disjoint (geometryValue As DbGeometry, otherGeometry As DbGeometry) As Boolean

Parameters

geometryValue
DbGeometry

The first geometry value to compare for disjointness.

otherGeometry
DbGeometry

The second geometry value to compare for disjointness.

Returns

true if geometryValue is disjoint from otherGeometry; otherwise false.

Applies to