我在这里读了一篇文章:N-tier Zombie with wcf。
我遇到了以下语句“zombieRepository.GetAll().Where(funcComp)”,GetAll()
返回一个IQueryable
,但是该where
语句是在一个Func<>
参数中传递的,它实际上将IQueryable
接口称为IEnumerable
接口。
这个调用的问题是过滤器是在客户端完成的(全部读dtos.ZombieIncident
出来,然后应用过滤器),而不是在 sql server 端,我的理解是否正确?
代码片段:
var paramStart = Expression.Parameter(typeof(dtos.ZombieIncident), "x");
Expression<Func<dtos.ZombieIncident, bool>> func = Expression.Lambda<Func<dtos.ZombieIncident, bool>>(
Expression.Call(Expression.Property(paramStart,
typeof(dtos.ZombieIncident).GetProperty(propertyName).GetGetMethod()),
typeof(String).GetMethod(searchType.ToString(), new Type[] { typeof(String) }),
new Expression[] { Expression.Constant(searchValue, typeof(string)) }),
new ParameterExpression[] { paramStart });
Func<dtos.ZombieIncident, bool> funcComp = func.Compile();
foreach (dtos.ZombieIncident zombie in zombieRepository.GetAll().Where(funcComp).ToList())
{
zombies.Add(ZombieIncidentDTOMapper.FromDTO(zombie));
}