DbSpatialServices.Distance 方法 (DbGeography, DbGeography)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
计算两个 DbGeography 值中最接近的点之间的距离。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public MustOverride Function Distance ( _
geographyValue As DbGeography, _
otherGeography As DbGeography _
) As Double
用法
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim otherGeography As DbGeography
Dim returnValue As Double
returnValue = instance.Distance(geographyValue, _
otherGeography)
public abstract double Distance(
DbGeography geographyValue,
DbGeography otherGeography
)
public:
virtual double Distance(
DbGeography^ geographyValue,
DbGeography^ otherGeography
) abstract
abstract Distance :
geographyValue:DbGeography *
otherGeography:DbGeography -> float
public abstract function Distance(
geographyValue : DbGeography,
otherGeography : DbGeography
) : double
参数
- geographyValue
类型:System.Data.Entity.Spatial.DbGeography
第一个地理值。
- otherGeography
类型:System.Data.Entity.Spatial.DbGeography
第二个地理值。
返回值
类型:System.Double
一个双精度值,表示 geographyValue 和 otherGeography 中,最接近两点之间的距离。
异常
例外 | 条件 |
---|---|
ArgumentNullException | geographyValue 或 otherGeography 为 null。 |
ArgumentException | geographyValue 或 otherGeography 与此空间服务实现不兼容。 |