SqlGeography.STEquals Method (SqlGeography)

 

Applies To: SQL Server 2016 Preview

Determines whether the specified SqlGeography instance has the same point set as the calling SqlGeography instance.

Namespace:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)

Syntax

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlBoolean STEquals(
    SqlGeography other
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
SqlBoolean STEquals(
    SqlGeography^ other
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member STEquals : 
        other:SqlGeography -> SqlBoolean
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Function STEquals (
    other As SqlGeography
) As SqlBoolean

Parameters

Return Value

Type: System.Data.SqlTypes.SqlBoolean

A SqlBoolean value that indicates whether the calling instance has the same point set as the specified SqlGeography instance. If true, both instances have the same point set. Otherwise, false.

Remarks

This method always returns null if the spatial reference IDs (SRIDs) of the geography instances do not match.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top