DbSpatialServices.Intersects 方法 (DbGeography, DbGeography)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
确定两个给定的 DbGeography 值是否在空间上相交。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public MustOverride Function Intersects ( _
geographyValue As DbGeography, _
otherGeography As DbGeography _
) As Boolean
用法
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim otherGeography As DbGeography
Dim returnValue As Boolean
returnValue = instance.Intersects(geographyValue, _
otherGeography)
public abstract bool Intersects(
DbGeography geographyValue,
DbGeography otherGeography
)
public:
virtual bool Intersects(
DbGeography^ geographyValue,
DbGeography^ otherGeography
) abstract
abstract Intersects :
geographyValue:DbGeography *
otherGeography:DbGeography -> bool
public abstract function Intersects(
geographyValue : DbGeography,
otherGeography : DbGeography
) : boolean
参数
- geographyValue
类型:System.Data.Entity.Spatial.DbGeography
用来比较相交性的第一个地理值。
- otherGeography
类型:System.Data.Entity.Spatial.DbGeography
用来比较相交性的第二个地理值。
返回值
类型:System.Boolean
如果 geographyValue 与 otherGeography 相交,则为 true;否则为 false。
异常
例外 | 条件 |
---|---|
ArgumentNullException | geographyValue 或 otherGeography 为 null。 |
ArgumentException | geographyValue 或 otherGeography 与此空间服务实现不兼容。 |