EF Linq将数组加入表

时间:2014-10-16 20:51:18

标签: c# sql linq entity-framework

我有以下课程:

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.

1 个答案:

答案 0 :(得分:0)

您在查询中使用centers类。这不是System.StringSystem.Int32System.Boolean等原始类型。您必须将lat类中的lngcenters属性收集到数组或其他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();