我正在使用 .NET 4.5 和 EF 6.0(也尝试使用 6.1.3)。
我在实体表 (System.Data.Entity.Spatial.DbGeography) 中有位置地理列。

using System.Data.Spatial; //also tried Entity one

public class Entity
{
    public DbGeography Location {get;set;}
}

在 LINQ 中,我试图选择指定区域内的所有实体。
var center = DbGeography.FromText(string.Format("POINT({0} {1})", latitude, longitude), 4326);
var region = center.Buffer(radius);
var result = db.Entities.Where(x => SqlSpatialFunctions.Filter(x.Location, region) == true).ToArray();

这个查询返回一个错误:
An unhandled exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll

Additional information: The specified type member 'Location' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.

如果这是真的:
http://referencesource.microsoft.com/#System.Data.Entity/System/Data/Objects/SqlClient/SqlSpatialFunctions.cs

这在网络上的示例中是如何工作的?

更新。使用 Intersects() 同样的问题
var center = DbGeography.FromText(string.Format("POINT({0} {1})", latitude, longitude), 4326);
var region = center.Buffer(radius);
var result = db.Entities.Where(x => x.Location.Intersects(region) == true).ToArray();

最佳答案

使用 STIntersects() 或 STWithin() 或它们的 EF 等效项,您可能会获得相同的甚至更好的性能;

// SQL STIntersects() equivalent
var result = db.Entities.Where(x => x.Intersects(region)).ToArray();

// SQL STWithin() equivalent
var result = db.Entities.Where(x => x.Intersects(region) == true && x.Difference(region).IsEmpty == true).ToArray();

如果您想要全部或部分位于该区域的所有位置,请使用“相交”。如果您只想要完全在该区域内的那些,请使用“在”内。

关于c# - LINQ to Entity 不支持 DbGeography 条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32427924/

10-13 06:57