Método SqlGeography.STOverlaps (SqlGeography)
Devuelve 1 si una instancia de SqlGeography se superpone espacialmente con otra instancia de SqlGeography, o 0 en caso contrario.
Espacio de nombres: Microsoft.SqlServer.Types
Ensamblado: Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)
Sintaxis
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlBoolean STOverlaps(
SqlGeography other
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
SqlBoolean STOverlaps(
SqlGeography^ other
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member STOverlaps :
other:SqlGeography -> SqlBoolean
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Function STOverlaps (
other As SqlGeography
) As SqlBoolean
Parámetros
other
Type: Microsoft.SqlServer.Types.SqlGeographyInstancia de SqlGeography para comprobar si se solapa con la instancia que realiza la llamada.
Valor devuelto
Type: System.Data.SqlTypes.SqlBoolean
1 si las dos instancias se solapan; de lo contrario, 0.
Ver también
Clase SqlGeography
Espacio de nombres Microsoft.SqlServer.Types
STOverlaps (tipo de datos geography)
Volver al principio