DbSpatialServices.GetArea 方法 (DbGeometry)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
傳回可為 Null 的雙精度浮點數值,指出指定的 DbGeometry 值的範圍,如果該值不代表表面,就可能為 null。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function GetArea ( _
geometryValue As DbGeometry _
) As Nullable(Of Double)
'用途
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim returnValue As Nullable(Of Double)
returnValue = instance.GetArea(geometryValue)
public abstract Nullable<double> GetArea(
DbGeometry geometryValue
)
public:
virtual Nullable<double> GetArea(
DbGeometry^ geometryValue
) abstract
abstract GetArea :
geometryValue:DbGeometry -> Nullable<float>
public abstract function GetArea(
geometryValue : DbGeometry
) : Nullable<double>
參數
- geometryValue
類型:System.Data.Entity.Spatial.DbGeometry
幾何值,不需要代表表面。
傳回值
類型:System.Nullable<Double>
可為 null 的雙精度浮點數值,表示所指 DbGeometry 值的面積。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geometryValue 為 null。 |
ArgumentException | geometryValue 與此空間服務實作不相容。 |