@@ -24,7 +24,7 @@ public static class SpatialRelationships
2424 /// <param name="other">Input geometry 2</param>
2525 /// <returns>Is contains</returns>
2626 [ Sql . Function ( "ST_Contains" , ServerSideOnly = true ) ]
27- public static bool STContains ( this NTSG geometry , NTSG other )
27+ public static bool ? STContains ( this NTSG geometry , NTSG other )
2828 {
2929 throw new InvalidOperationException ( ) ;
3030 }
@@ -39,7 +39,7 @@ public static bool STContains(this NTSG geometry, NTSG other)
3939 /// <param name="other">Input geometry 2</param>
4040 /// <returns>Is covers</returns>
4141 [ Sql . Function ( "ST_Covers" , ServerSideOnly = true ) ]
42- public static bool STCovers ( this NTSG geometry , NTSG other )
42+ public static bool ? STCovers ( this NTSG geometry , NTSG other )
4343 {
4444 throw new InvalidOperationException ( ) ;
4545 }
@@ -54,7 +54,7 @@ public static bool STCovers(this NTSG geometry, NTSG other)
5454 /// <param name="other">Input geometry 2</param>
5555 /// <returns>Is covered by</returns>
5656 [ Sql . Function ( "ST_CoveredBy" , ServerSideOnly = true ) ]
57- public static bool STCoveredBy ( this NTSG geometry , NTSG other )
57+ public static bool ? STCoveredBy ( this NTSG geometry , NTSG other )
5858 {
5959 throw new InvalidOperationException ( ) ;
6060 }
@@ -69,7 +69,7 @@ public static bool STCoveredBy(this NTSG geometry, NTSG other)
6969 /// <param name="other">Input geometry 2</param>
7070 /// <returns>Is crosses</returns>
7171 [ Sql . Function ( "ST_Crosses" , ServerSideOnly = true ) ]
72- public static bool STCrosses ( this NTSG geometry , NTSG other )
72+ public static bool ? STCrosses ( this NTSG geometry , NTSG other )
7373 {
7474 throw new InvalidOperationException ( ) ;
7575 }
@@ -84,7 +84,7 @@ public static bool STCrosses(this NTSG geometry, NTSG other)
8484 /// <param name="other">Input geometry 2</param>
8585 /// <returns>Is disjoints</returns>
8686 [ Sql . Function ( "ST_Disjoint" , ServerSideOnly = true ) ]
87- public static bool STDisjoint ( this NTSG geometry , NTSG other )
87+ public static bool ? STDisjoint ( this NTSG geometry , NTSG other )
8888 {
8989 throw new InvalidOperationException ( ) ;
9090 }
@@ -100,7 +100,7 @@ public static bool STDisjoint(this NTSG geometry, NTSG other)
100100 /// <param name="distance">Distance in units defined by the spatial reference system</param>
101101 /// <returns>Is geometries are within distance</returns>
102102 [ Sql . Function ( "ST_DWithin" , ServerSideOnly = true ) ]
103- public static bool STDWithin ( this NTSG geometry , NTSG other , double distance )
103+ public static bool ? STDWithin ( this NTSG geometry , NTSG other , double distance )
104104 {
105105 throw new InvalidOperationException ( ) ;
106106 }
@@ -115,7 +115,7 @@ public static bool STDWithin(this NTSG geometry, NTSG other, double distance)
115115 /// <param name="other">Input geometry 2</param>
116116 /// <returns>Are spatially equal</returns>
117117 [ Sql . Function ( "ST_Equals" , ServerSideOnly = true ) ]
118- public static bool STEquals ( this NTSG geometry , NTSG other )
118+ public static bool ? STEquals ( this NTSG geometry , NTSG other )
119119 {
120120 throw new InvalidOperationException ( ) ;
121121 }
@@ -130,7 +130,7 @@ public static bool STEquals(this NTSG geometry, NTSG other)
130130 /// <param name="other">Input geometry 2</param>
131131 /// <returns>Is intersects</returns>
132132 [ Sql . Function ( "ST_Intersects" , ServerSideOnly = true ) ]
133- public static bool STIntersects ( this NTSG geometry , NTSG other )
133+ public static bool ? STIntersects ( this NTSG geometry , NTSG other )
134134 {
135135 throw new InvalidOperationException ( ) ;
136136 }
@@ -145,7 +145,7 @@ public static bool STIntersects(this NTSG geometry, NTSG other)
145145 /// <param name="other">Input geometry 2</param>
146146 /// <returns>Is equal and coordinates are in the same order</returns>
147147 [ Sql . Function ( "ST_OrderingEquals" , ServerSideOnly = true ) ]
148- public static bool STOrderingEquals ( this NTSG geometry , NTSG other )
148+ public static bool ? STOrderingEquals ( this NTSG geometry , NTSG other )
149149 {
150150 throw new InvalidOperationException ( ) ;
151151 }
@@ -160,7 +160,7 @@ public static bool STOrderingEquals(this NTSG geometry, NTSG other)
160160 /// <param name="other">Input geometry 2</param>
161161 /// <returns>Is spatially overlap</returns>
162162 [ Sql . Function ( "ST_Overlaps" , ServerSideOnly = true ) ]
163- public static bool STOverlaps ( this NTSG geometry , NTSG other )
163+ public static bool ? STOverlaps ( this NTSG geometry , NTSG other )
164164 {
165165 throw new InvalidOperationException ( ) ;
166166 }
@@ -175,7 +175,7 @@ public static bool STOverlaps(this NTSG geometry, NTSG other)
175175 /// <param name="other">Input geometry 2</param>
176176 /// <returns>Is touches</returns>
177177 [ Sql . Function ( "ST_Touches" , ServerSideOnly = true ) ]
178- public static bool STTouches ( this NTSG geometry , NTSG other )
178+ public static bool ? STTouches ( this NTSG geometry , NTSG other )
179179 {
180180 throw new InvalidOperationException ( ) ;
181181 }
@@ -190,7 +190,7 @@ public static bool STTouches(this NTSG geometry, NTSG other)
190190 /// <param name="other">Input geometry 2</param>
191191 /// <returns>Is within</returns>
192192 [ Sql . Function ( "ST_Within" , ServerSideOnly = true ) ]
193- public static bool STWithin ( this NTSG geometry , NTSG other )
193+ public static bool ? STWithin ( this NTSG geometry , NTSG other )
194194 {
195195 throw new InvalidOperationException ( ) ;
196196 }
0 commit comments