I am currently learning about DbGeography in C# and playing around with some functionality.
I have been trying to ascertain whether the Intersects()
method will return true for a point lying on a straight line (represented as a LineString DbGeography
object) if the point lies between the starting and end points.
So, my question is: Can the [myPoint].Intersects([myLine])
method be trusted to tell me if myPoint lies on myLine?