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