DbSpatialServices.Intersects - метод (DbGeography, DbGeography)
[Эта страница относится к документации к Entity Framework 6. Последняя версия доступна в составе пакета Entity Framework NuGet. Дополнительные сведения об Entity Framework см. в разделе 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
Первое значение geography для сравнения на пересечение.
- otherGeography
Тип: System.Data.Entity.Spatial.DbGeography
Второе значение geography для сравнения на пересечение.
Возвращаемое значение
Тип: System.Boolean
Значение true, если geographyValue пересекается с otherGeography; в противном случае — значение false.
Исключения
Исключение | Условие |
---|---|
ArgumentNullException | Значение geographyValue или otherGeography равно null. |
ArgumentException | Значение geographyValue или otherGeography несовместимо с этой реализацией пространственных служб. |