DbSpatialServices.GetDimension 方法 (DbGeography)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
取得給定 DbGeography 值的維度,如果值是集合,則為其最大項目的維度。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function GetDimension ( _
geographyValue As DbGeography _
) As Integer
'用途
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim returnValue As Integer
returnValue = instance.GetDimension(geographyValue)
public abstract int GetDimension(
DbGeography geographyValue
)
public:
virtual int GetDimension(
DbGeography^ geographyValue
) abstract
abstract GetDimension :
geographyValue:DbGeography -> int
public abstract function GetDimension(
geographyValue : DbGeography
) : int
參數
- geographyValue
類型:System.Data.Entity.Spatial.DbGeography
應該針對此地理位置值擷取維度值。
傳回值
類型:System.Int32
geographyValue 的維度,若 DbGeography 是集合則為最大項目維度。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geographyValue 為 null。 |
ArgumentException | geographyValue 與此空間服務實作不相容。 |