共用方式為


DbSpatialServices.Intersects 方法

定義

判斷兩個指定的值是否在空間上有交集。

多載

Intersects(DbGeography, DbGeography)

判斷兩個給定的 DbGeography 值是否為空間相交的值。

Intersects(DbGeometry, DbGeometry)

判斷兩個給定的 DbGeometry 值是否為空間相交的值。

Intersects(DbGeography, DbGeography)

判斷兩個給定的 DbGeography 值是否為空間相交的值。

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

參數

geographyValue
DbGeography

要比較交集的第一個地理位置值。

otherGeography
DbGeography

要比較交集的第二個地理位置值。

傳回

如果 geographyValueotherGeography 有交集則為 true,否則為 false

例外狀況

geographyValue otherGeography

geographyValue otherGeography

適用於

Intersects(DbGeometry, DbGeometry)

判斷兩個給定的 DbGeometry 值是否為空間相交的值。

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

參數

geometryValue
DbGeometry

要比較交集的第一個幾何值。

otherGeometry
DbGeometry

要比較交集的第二個幾何值。

傳回

如果 geometryValueotherGeometry 有交集則為 true,否則為 false

例外狀況

geometryValue otherGeometry

geometryValue otherGeometry

適用於