DbSpatialServices.GetArea メソッド (DbGeography)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定した DbGeography 値の領域を示す null 許容型の double 値を返します。値がサーフェスを表していない場合は null が返されます。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public MustOverride Function GetArea ( _
geographyValue As DbGeography _
) As Nullable(Of Double)
'使用
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim returnValue As Nullable(Of Double)
returnValue = instance.GetArea(geographyValue)
public abstract Nullable<double> GetArea(
DbGeography geographyValue
)
public:
virtual Nullable<double> GetArea(
DbGeography^ geographyValue
) abstract
abstract GetArea :
geographyValue:DbGeography -> Nullable<float>
public abstract function GetArea(
geographyValue : DbGeography
) : Nullable<double>
パラメーター
- geographyValue
型 : System.Data.Entity.Spatial.DbGeography
geography 値。サーフェスを表す必要はありません。
戻り値
型 : System.Nullable<Double>
指定した DbGeography 値の領域を示す null 許容の double 値。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geographyValue が null です。 |
ArgumentException | geographyValue は、この空間サービスの実装と互換性がありません。 |