我想编写一个扩展方法,类似于List类的List类,它接受一个null
能够对象的类。
我的扩展方法是:
public static class CustomList
{
public static bool Contains<T>(this List<T> lst, Nullable<T> obj) where T : struct
{
bool bContains = false;
if (obj == null)
{
bContains = false;
}
else
{
T obj1 = (T)obj.Value;
bContains = lst.Contains(obj1);
}
return bContains;
}
}
调用扩展方法的我的LINQ代码如下:
var lstJobActivity = (from objActivity in context.VW_JOB_ACTIVITY
where JobAssignId.Contains(objActivity.ASSIGN_ID) && objActivity.ACTIVITY_TYPE == "JBINTV"
select objActivity).ToList<VW_JOB_ACTIVITY>();
其中objActivity.ASSIGN_ID
为null
。
显示的错误如下:
LINQ to Entities无法识别方法'Boolean Contains [Int64](System.Collections.Generic.List
1[System.Int64], System.Nullable
1 [System.Int64])'方法,并且此方法无法转换为存储表达式
答案 0 :(得分:0)
这里的问题是LINQ必须构建一个查询并将其传递给数据库引擎。您将此函数指定为查询的一部分,LINQ足够聪明,知道数据库引擎不知道如何执行此函数。