DbSpatialServices.Contains (Método)
[Esta página es específica de la versión 6 de Entity Framework. La versión más reciente está disponible como el paquete NuGet de Entity Framework. Para más información sobre Entity Framework, consulte msdn.com/es-ES/data/ef].
Determina si un valor DbGeometry contiene espacialmente al otro.
Espacio de nombres: System.Data.Entity.Spatial
Ensamblado: EntityFramework (en EntityFramework.dll)
Sintaxis
'Declaración
Public MustOverride Function Contains ( _
geometryValue As DbGeometry, _
otherGeometry As DbGeometry _
) As Boolean
'Uso
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim otherGeometry As DbGeometry
Dim returnValue As Boolean
returnValue = instance.Contains(geometryValue, _
otherGeometry)
public abstract bool Contains(
DbGeometry geometryValue,
DbGeometry otherGeometry
)
public:
virtual bool Contains(
DbGeometry^ geometryValue,
DbGeometry^ otherGeometry
) abstract
abstract Contains :
geometryValue:DbGeometry *
otherGeometry:DbGeometry -> bool
public abstract function Contains(
geometryValue : DbGeometry,
otherGeometry : DbGeometry
) : boolean
Parámetros
- geometryValue
Tipo: System.Data.Entity.Spatial.DbGeometry
Primer valor de geometría.
- otherGeometry
Tipo: System.Data.Entity.Spatial.DbGeometry
Segundo valor de geometría.
Valor devuelto
Tipo: System.Boolean
Es true si geometryValue contiene otherGeometry; de lo contrario, es false.
Excepciones
Excepción | Condición |
---|---|
ArgumentNullException | geometryValue o otherGeometry es null. |
ArgumentException | geometryValue o otherGeometry no es compatible con esta implementación de servicios espaciales. |