DbSpatialServices.GetDimension 方法 (DbGeography)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
获取给定 DbGeography 值的维度(如果值为集合)或最大的元素维度。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public MustOverride Function GetDimension ( _
geographyValue As DbGeography _
) As Integer
用法
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim returnValue As Integer
returnValue = instance.GetDimension(geographyValue)
public abstract int GetDimension(
DbGeography geographyValue
)
public:
virtual int GetDimension(
DbGeography^ geographyValue
) abstract
abstract GetDimension :
geographyValue:DbGeography -> int
public abstract function GetDimension(
geographyValue : DbGeography
) : int
参数
- geographyValue
类型:System.Data.Entity.Spatial.DbGeography
应检索维度值的地理值。
返回值
类型:System.Int32
geographyValue 的维度;如果 DbGeography 是一个集合,则为最大元素维度。
异常
例外 | 条件 |
---|---|
ArgumentNullException | geographyValue 为 null。 |
ArgumentException | geographyValue 与此空间服务实现不兼容。 |