DbSpatialServices.Relate 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
根据给定的维度扩展的 9 交集模型 (DE-9IM) 交集模式来确定两个给定的 DbGeometry 值在空间上是否相关。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public MustOverride Function Relate ( _
geometryValue As DbGeometry, _
otherGeometry As DbGeometry, _
matrix As String _
) As Boolean
用法
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim otherGeometry As DbGeometry
Dim matrix As String
Dim returnValue As Boolean
returnValue = instance.Relate(geometryValue, _
otherGeometry, matrix)
public abstract bool Relate(
DbGeometry geometryValue,
DbGeometry otherGeometry,
string matrix
)
public:
virtual bool Relate(
DbGeometry^ geometryValue,
DbGeometry^ otherGeometry,
String^ matrix
) abstract
abstract Relate :
geometryValue:DbGeometry *
otherGeometry:DbGeometry *
matrix:string -> bool
public abstract function Relate(
geometryValue : DbGeometry,
otherGeometry : DbGeometry,
matrix : String
) : boolean
参数
- geometryValue
类型:System.Data.Entity.Spatial.DbGeometry
第一个几何值。
- otherGeometry
类型:System.Data.Entity.Spatial.DbGeometry
应与第一个几何值比较相关性的几何值。
- matrix
类型:System.String
包含定义了相关性的 (DE-9IM) 交集模式的文本表示形式的字符串。
返回值
类型:System.Boolean
如果根据指定的交集模式矩阵,此 geometryValue 与 otherGeometry 相关,则为 true;否则为 false。
异常
例外 | 条件 |
---|---|
ArgumentNullException | geometryValue、otherGeometry 或 matrix 为 null。 |
ArgumentException | geometryValue 或 otherGeometry 与此空间服务实现不兼容。 |