我有以下方法:
public List<Alert> GetMonthlyAlertsByAccountID(Int32 AccountID, params int[] alertTypes)
{
List<Alert> result = new List<Alert>();
using (NeuroLabLinqDataContext dc = conn.GetContext())
{
IEnumerable<Alert> alerts = (from a in dc.Alerts
where a.AccountID == AccountID &&
a.AlertTypeID.In(alertTypes)
orderby ((DateTime)a.CreateDate).Month ascending
select a).ToList();
}
return result;
}
使用扩展方法:
public static bool In<T>(this T t, params T[] values)
{
foreach (T value in values)
{
if (t.Equals(value))
{
return true;
}
}
return false;
}
其目的是仅返回具有特定AlertTypeID的项目。
结果是:
方法'布尔在[Int32](Int32,Int32 [])'中不受支持 转换为SQL。
我确信无需使用扩展方法即可完成。有人能指出我正确的方向吗?
感谢。
答案 0 :(得分:4)
使用:
alertTypes.Contains(a.AlertTypeID)
相反。
IEnumerable<Alert> alerts = (from a in dc.Alerts
where a.AccountID == AccountID &&
alertTypes.Contains(a.AlertTypeID)
orderby ((DateTime)a.CreateDate).Month ascending
select a).ToList();