使用Linq to Entities的时候发生如下异常:
Unable to create a constant value of type 'Closure type'. Only primitive types ('such as Int32, String, and Guid') are supported in this context.


代码是这样的:
ctx.Products.Where(p => p.Status == (int)s).ToString();

其中s是类型为ProdcutStatus的枚举类型:
public enum ProdcutStatus{
Open,
Close
}

 

这是因为Linq to Entities根据Where中的委托生成SQL语句,所以对里面的复杂程度(方法)有一定的限制,其中的(int)s就无法被正确翻译。
要解 决这个问题,需要把这个(int)s过程放到外面来:

int status = (int)s;
ctx.Products.Where(p => p.Status == status).ToString();

这样Where内部还是保持了相对的“干净”,不会阻 碍SQL语句的动态生成。