EF核心空间数据:查询和获取以米为单位的距离
我可以查询并得到离客户最近的学位位置:
serviceQuery = serviceQuery.Where(s => s.Location.Distance(currentLocation) < <degree>)
.OrderBy(s => s.Location.Distance(currentLocation));
在C#中键入NetTopologySuite.Geometries.Point
,在SQL Server中键入geography
。
解决方案
我发现了问题。
PostgreSQL(我们现在正在使用)和其他数据库可能有两种类型的空间数据:几何和地理。
您可以参考这些链接了解更多信息(Link 1、Link 2)。
长话短说,如果您正在使用地球的经纬度,并且希望您的计算使用米单位,则需要使用地理类型。
属性:
[Column(TypeName="geography (point)")]
public Point Location { get; set; }
流畅接口:
builder.Entity<YourEntity>()
.Property(e => e.Location)
.HasColumnType("geography (point)");
如果不指定,则默认为用于笛卡尔坐标的几何图形。
顺便说一句,数据库数据的SRID必须与您用于查询的位置相同。
相关文章