DbGeometry.Distance メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この DbGeometry 値と別の DbGeometry 値内の最も近いポイント間の距離を計算します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function Distance ( _
other As DbGeometry _
) As Nullable(Of Double)
'使用
Dim instance As DbGeometry
Dim other As DbGeometry
Dim returnValue As Nullable(Of Double)
returnValue = instance.Distance(other)
public Nullable<double> Distance(
DbGeometry other
)
public:
Nullable<double> Distance(
DbGeometry^ other
)
member Distance :
other:DbGeometry -> Nullable<float>
public function Distance(
other : DbGeometry
) : Nullable<double>
パラメーター
- other
型 : System.Data.Entity.Spatial.DbGeometry
この値からの距離を計算する必要がある geometry 値。
戻り値
型 : System.Nullable<Double>
この geometry 値と other で最も近い 2 点間の距離を指定する double 値。
例外
例外 | 状態 |
---|---|
ArgumentNullException | other が null です。 |