DbGeography.Distance-Methode
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Berechnet den Abstand zwischen den nächsten Punkten in diesem DbGeography-Wert und in einem anderen DbGeography-Wert.
Namespace: System.Data.Entity.Spatial
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function Distance ( _
other As DbGeography _
) As Nullable(Of Double)
'Usage
Dim instance As DbGeography
Dim other As DbGeography
Dim returnValue As Nullable(Of Double)
returnValue = instance.Distance(other)
public Nullable<double> Distance(
DbGeography other
)
public:
Nullable<double> Distance(
DbGeography^ other
)
member Distance :
other:DbGeography -> Nullable<float>
public function Distance(
other : DbGeography
) : Nullable<double>
Parameter
- other
Typ: System.Data.Entity.Spatial.DbGeography
Der Geografiewert, für den die Entfernung zu diesem Wert berechnet werden soll.
Rückgabewert
Typ: System.Nullable<Double>
Ein double-Wert, der den Abstand zwischen den beiden nächsten Punkten in diesem Geografiewert und other angibt.