DbSpatialServices.GetLength Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetLength(DbGeography) |
Returns a nullable double value that indicates the length of the given DbGeography value, which may be null if the value does not represent a curve. |
GetLength(DbGeometry) |
Returns a nullable double value that indicates the length of the given DbGeometry value, which may be null if the value does not represent a curve. |
GetLength(DbGeography)
Returns a nullable double value that indicates the length of the given DbGeography value, which may be null if the value does not represent a curve.
public abstract Nullable<double> GetLength (System.Data.Entity.Spatial.DbGeography geographyValue);
abstract member GetLength : System.Data.Entity.Spatial.DbGeography -> Nullable<double>
Public MustOverride Function GetLength (geographyValue As DbGeography) As Nullable(Of Double)
Parameters
- geographyValue
- DbGeography
The geography value, which need not represent a curve.
Returns
The length of the given DbGeography value.
Exceptions
geographyValue
is null.
geographyValue
is not compatible with this spatial services implementation.
Applies to
GetLength(DbGeometry)
Returns a nullable double value that indicates the length of the given DbGeometry value, which may be null if the value does not represent a curve.
public abstract Nullable<double> GetLength (System.Data.Entity.Spatial.DbGeometry geometryValue);
abstract member GetLength : System.Data.Entity.Spatial.DbGeometry -> Nullable<double>
Public MustOverride Function GetLength (geometryValue As DbGeometry) As Nullable(Of Double)
Parameters
- geometryValue
- DbGeometry
The geometry value, which need not represent a curve.
Returns
The length of the given DbGeometry value.
Exceptions
geometryValue
is null.
geometryValue
is not compatible with this spatial services implementation.
Applies to
Entity Framework