标签: entity-framework entity-framework-core
到目前为止,我一直在使用MSSQL数据库中的存储过程来实现地理定位,但是由于EntityFrameworkCore 2.2现在直接实现了空间功能,因此我想开始着眼于使用linq执行这些功能。
EntityFrameworkCore 2.2
我目前有;
public decimal Latitude { get; set; } public decimal Longitude { get; set; }
存在于我的模型中。我可以告诉entityframeworkcore映射到这些字段吗?还是我需要直接实现IPoint?
entityframeworkcore
IPoint