DbSpatialServices.Buffer 方法 (DbGeography, Double)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
建立一個地理位置值,表示所有與給定 DbGeography 值相距小於或等於 distance 的點。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function Buffer ( _
geographyValue As DbGeography, _
distance As Double _
) As DbGeography
'用途
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim distance As Double
Dim returnValue As DbGeography
returnValue = instance.Buffer(geographyValue, _
distance)
public abstract DbGeography Buffer(
DbGeography geographyValue,
double distance
)
public:
virtual DbGeography^ Buffer(
DbGeography^ geographyValue,
double distance
) abstract
abstract Buffer :
geographyValue:DbGeography *
distance:float -> DbGeography
public abstract function Buffer(
geographyValue : DbGeography,
distance : double
) : DbGeography
參數
- geographyValue
類型:System.Data.Entity.Spatial.DbGeography
地理位置值。
- distance
類型:System.Double
指定 geographyValue 與緩衝區相距多遠的雙精度浮點數值。
傳回值
類型:System.Data.Entity.Spatial.DbGeography
一個新的 DbGeography 值,表示所有與 geographyValue 相距小於或等於 distance 的點。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geographyValue 為 null。 |
ArgumentException | geographyValue 與此空間服務實作不相容。 |