SqlSpatialServices.Disjoint Method

 

Determines whether the two given values are spatially disjoint.

Namespace:   System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

NameDescription
System_CAPS_pubmethodDisjoint(DbGeography, DbGeography)

Determines whether the two given DbGeography values are spatially disjoint.(Overrides DbSpatialServices.Disjoint(DbGeography, DbGeography).)

System_CAPS_pubmethodDisjoint(DbGeometry, DbGeometry)

Determines whether the two given DbGeometry values are spatially disjoint.(Overrides DbSpatialServices.Disjoint(DbGeometry, DbGeometry).)


SqlSpatialServices.Disjoint Method (DbGeography, DbGeography)

Determines whether the two given DbGeography values are spatially disjoint.

public override bool Disjoint(
	DbGeography geographyValue,
	DbGeography otherGeography
)

Parameters

geographyValue
Type: System.Data.Entity.Spatial.DbGeography

The first geography value to compare for disjointness.

otherGeography
Type: System.Data.Entity.Spatial.DbGeography

The second geography value to compare for disjointness.

Return Value

Type: System.Boolean

true if geographyValue is disjoint from otherGeography; otherwise, false.


SqlSpatialServices.Disjoint Method (DbGeometry, DbGeometry)

Determines whether the two given DbGeometry values are spatially disjoint.

public override bool Disjoint(
	DbGeometry geometryValue,
	DbGeometry otherGeometry
)

Parameters

geometryValue
Type: System.Data.Entity.Spatial.DbGeometry

The first geometry value to compare for disjointness.

otherGeometry
Type: System.Data.Entity.Spatial.DbGeometry

The second geometry value to compare for disjointness.

Return Value

Type: System.Boolean

true if geometryValue is disjoint from otherGeometry; otherwise, false.