我有以下课程:
public class Coordinate
{
public string lat { get; set; }
public string lng { get; set; }
}
我创建了这些对象的数组。
然后我想确定我的数组中的任何对象是否与表中的行(lat和long)匹配:
location = db.Locations.Where(u => centers.Any(s => u.Lat.Equals(s.lat)) &&
centers.Any(s => u.Lng.Equals(s.lng)))
.ToArray();
但我得到了这个例外:
Only primitive types or enumeration types are supported in this context.
答案 0 :(得分:0)
您在查询中使用centers
类。这不是System.String
,System.Int32
或System.Boolean
等原始类型。您必须将lat
类中的lng
和centers
属性收集到数组或其他IEnumberable<string>
实现中。
类似的东西:
var centerLatitudes=(from center in centers
select center.lat).toList();
var centerLongitudes=(from center in centers
select center.lng).toList();
var locations =
db.Locations.Where(loc => centerLatitudes.Any(clt => loc.Lat.Equals(clt.lat)) &&
centerLongitudes.Any(clt => loc.Lng.Equals(clt.lng)))
.ToArray();