DbSpatialServices.Distance メソッド (DbGeography, DbGeography)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
2 つの 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
最初の geography 値。
- otherGeography
型 : System.Data.Entity.Spatial.DbGeography
2 番目の geography 値。
戻り値
型 : System.Double
geographyValue と otherGeography の最も近い 2 点間の距離を指定する double 値。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geographyValue または otherGeography が null です。 |
ArgumentException | geographyValue または otherGeography は、この空間サービスの実装と互換性がありません。 |