gpt4 book ai didi

c# - LINQ to Entity 不支持 DbGeography 条件

转载 作者:行者123 更新时间:2023-11-30 12:57:52 26 4
gpt4 key购买 nike

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

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com