DbSpatialServices.SpatialEquals 方法 (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 SpatialEquals ( _
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.SpatialEquals(geometryValue, _
otherGeometry)
public abstract bool SpatialEquals(
DbGeometry geometryValue,
DbGeometry otherGeometry
)
public:
virtual bool SpatialEquals(
DbGeometry^ geometryValue,
DbGeometry^ otherGeometry
) abstract
abstract SpatialEquals :
geometryValue:DbGeometry *
otherGeometry:DbGeometry -> bool
public abstract function SpatialEquals(
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 與此空間服務實作不相容。 |