| title | ToString (geometry Data Type) | |
|---|---|---|
| description | ToString (geometry Data Type) | |
| author | MladjoA | |
| ms.author | mlandzic | |
| ms.date | 08/03/2017 | |
| ms.service | sql | |
| ms.subservice | t-sql | |
| ms.topic | reference | |
| ms.custom |
|
|
| f1_keywords |
|
|
| helpviewer_keywords |
|
|
| dev_langs |
|
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
Returns the Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geometry instance augmented with any Z (elevation) and M (measure) values carried by the instance.
.ToString ()
[!INCLUDEssNoVersion] return type: nvarchar(max)
CLR return type: SqlString
This method will return the string "Null" when called on null instances.
On non-null instances, this method is equivalent to using AsTextZM().
The following example create a LineString instance and uses ToString() to fetch the text description of the instance.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 0 1, 1 0)', 0);
SELECT @g.ToString(); STAsText (geometry Data Type)
Extended Methods on Geometry Instances