DbSpatialServices.Disjoint 方法

定义

重载

Disjoint(DbGeography, DbGeography)

确定两个给定的 DbGeography 值是否在空间上不连续。

Disjoint(DbGeometry, DbGeometry)

确定两个给定的 DbGeometry 值是否在空间上不连续。

Disjoint(DbGeography, DbGeography)

确定两个给定的 DbGeography 值是否在空间上不连续。

public abstract bool Disjoint(System.Data.Entity.Spatial.DbGeography geographyValue, System.Data.Entity.Spatial.DbGeography otherGeography);
abstract member Disjoint : System.Data.Entity.Spatial.DbGeography * System.Data.Entity.Spatial.DbGeography -> bool
Public MustOverride Function Disjoint (geographyValue As DbGeography, otherGeography As DbGeography) As Boolean

参数

geographyValue
DbGeography

要比较不相交的第一个地理值。

otherGeography
DbGeography

要比较不连续性的第二个地理值。

返回

如果 geographyValue 与 otherGeography 不相交,则为 true;否则为 false。

例外

geographyValueotherGeography 为 null。

geographyValueotherGeography 与此空间服务实现不兼容。

适用于

Disjoint(DbGeometry, DbGeometry)

确定两个给定的 DbGeometry 值是否在空间上不连续。

public abstract bool Disjoint(System.Data.Entity.Spatial.DbGeometry geometryValue, System.Data.Entity.Spatial.DbGeometry otherGeometry);
abstract member Disjoint : System.Data.Entity.Spatial.DbGeometry * System.Data.Entity.Spatial.DbGeometry -> bool
Public MustOverride Function Disjoint (geometryValue As DbGeometry, otherGeometry As DbGeometry) As Boolean

参数

geometryValue
DbGeometry

要比较不相交的第一个几何图形值。

otherGeometry
DbGeometry

要比较不相交的第二个几何图形值。

返回

如果 geometryValue 与 otherGeometry 不相交,则为 true;否则为 false。

例外

geometryValueotherGeometry 为 null。

geometryValueotherGeometry 与此空间服务实现不兼容。

适用于