在此上下文中仅支持基元类型或枚举类型

时间:2013-05-17 18:37:21

标签: c# linq entity-framework

所以我有这段代码:

    public int saleCount(List<Shift> shifts) {
        var query = (
            from x in database.ItemSales
            where shifts.Any(y => y.ID == x.shiftID)
            select x.SalesCount
        );
        return query.Sum();
    }

不幸的是,它抛出了这个错误:

Unable to create a constant value of type 'Shift'. 
Only primitive types or enumeration types are supported in this context.

所以这里我定义了shift,这只是一个普通的Entity Framework Code First对象:

[Table("Shifts")]
public class Shift : MPropertyAsStringSettable {
    [Key]
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int ID { get; set; }
    public int SiteID { get; set; }
    public string ShiftID_In_POS { get; set; }
    public DateTime ShiftDate { get; set; }
}

我想问题是我在Linq查询中使用Shift对象。我正在对“Shift”列表进行“任意”操作。

一种可能的解决方案是将List更改为Collection或者其他东西,毕竟,我在其他地方加载linq查询,但签名是什么?

2 个答案:

答案 0 :(得分:14)

尝试在查询中不使用Shift s集合的此更改:

public int saleCount(List<Shift> shifts) {
    var shiftIds = shifts.Select(s => s.ID).ToList();
    var query = (
        from x in database.ItemSales
        where shiftIds.Contains(x.shiftID)
        select x.SalesCount
    );
    return query.Sum();
}

我们的想法是避免使用ID将Shift对象传递给查询提供程序。

答案 1 :(得分:0)

我收到此错误是因为

bool isPresent = entities.VaccinationRecords.Any(id => id.PersonId.equals(studetails.StuId));

personID 和 StuId 是 INT 类型,但我使用 .equals 来比较两个值。

那我就这样做了;

bool isPresent = entities.VaccinationRecords.Any(id => id.PersonId == studetails.StuId);

问题已解决。