如何在条件&#34中使用通用的正确Linq表达式,其中"
public static class ConStr
{
public static MySqlConnection Conn()
{
return new MySqlConnection(ConfigurationManager.ConnectionStrings["DBCN"].ConnectionString);
}
}
Repositor.cs
private IDbConnection cn;
public IEnumerable<TEntity> FilterBy(Expression<Func<TEntity, bool>> expression)
{
using(cn = ConStr.Conn())
{
return cn.GetAll<TEntity>(null).Where(expression); <--error does not contain definition of where
}
}
但使用Linq表达式将运行
using (IDbConnection cn = ConStr.Conn())
{
var que = cn.GetAll<Cause>(null).Where(x=>x.cause_id == 1);
bool dbIE = Utils.IsAny<Cause>(que);
if (dbIE == true)
{
DGRID.DataSource = que;
}
else
{
MessageBox.Show("Sorry No Value");
}
}
答案 0 :(得分:4)
Where
的{p> IEnumerable<T>
不包含Expression
的重载。要将Where
与Expression
一起使用,您必须将GetAll
的结果更改为IQueryable
。对于您的特定情况,您只需将Expression<Func<TEntity, bool>> expression
更改为Func<TEntity, bool> expression
,一切都应该有效。