I am trying to use DbGeography without any SQL database. I have 1 polygon DbGeography and 1 point DbGeography.
I try to use polygon.Intersects(point) to check if the point is inside polygon but Intersects always return true.
How can I check a point is inside a polygon ?
Thank you
EDIT:
here is polygon
POLYGON((103.000833333333 14.2038888888889,103.000833333333 17.9880555555556,103.0675 18.1216666666667,103.300833333333 18.4216666666667,103.4175 18.4383333333333,103.9675 18.3216666666667,104.334444444444 17.8213888888889,104.784444444444 17.4047222222222,104.767777777778 16.6877777777778,105.001388888889 16.2544444444444,105.418055555556 16.0044444444444,105.634722222222 15.6708333333333,105.584722222222 15.0041666666667,105.534722222222 14.5538888888889,105.068055555556 14.2205555555556,104.467777777778 14.3538888888889,103.9175 14.3372222222222,103.3675 14.3538888888889,103.000833333333 14.2038888888889))
and here is point
POINT (98.9505555555556 18.7505555555556)