DbSpatialServices.Intersects 方法 (DbGeometry, DbGeometry)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
判斷兩個給定的 DbGeometry 值是否為空間相交的值。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function Intersects ( _
geometryValue As DbGeometry, _
otherGeometry As DbGeometry _
) As Boolean
'用途
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim otherGeometry As DbGeometry
Dim returnValue As Boolean
returnValue = instance.Intersects(geometryValue, _
otherGeometry)
public abstract bool Intersects(
DbGeometry geometryValue,
DbGeometry otherGeometry
)
public:
virtual bool Intersects(
DbGeometry^ geometryValue,
DbGeometry^ otherGeometry
) abstract
abstract Intersects :
geometryValue:DbGeometry *
otherGeometry:DbGeometry -> bool
public abstract function Intersects(
geometryValue : DbGeometry,
otherGeometry : DbGeometry
) : boolean
參數
- geometryValue
類型:System.Data.Entity.Spatial.DbGeometry
要比較交集的第一個幾何值。
- otherGeometry
類型:System.Data.Entity.Spatial.DbGeometry
要比較交集的第二個幾何值。
傳回值
類型:System.Boolean
若 geometryValue 與 otherGeometry 有交集,則為 true,否則為 false。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geometryValue 或 otherGeometry 為 null。 |
ArgumentException | geometryValue 或 otherGeometry 與此空間服務實作不相容。 |