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