该方法具有表达式<>作为参数,工作原理:
internal List<T> GetobjectsGreaterThanReadTime<T>(Expression<Func<T,bool>> whereClause) where T : class{ table<T> table = this.Database.Gettable<T>(); IEnumerable<T> objects = table.Where(whereClause); return objects.ToList();}
现在,我正在尝试这种方式(下面)一段时间,它只会挂在最后一行(ToList()).首先,为什么要编译?我的意思是,为什么Expression和Func可以互换使用作为参数?那么,为什么Expression工作,而Func版本只是挂起?
注意:上述方法与此方法之间的唯一区别是方法参数(Expression vs. Func).
internal List<T> GetobjectsGreaterThanReadTime<T>(Func<T,bool> whereClause) where T : class{ table<T> table = this.Database.Gettable<T>(); IEnumerable<T> objects = table.Where(whereClause); return objects.ToList();}解决方法 Expression版本调用
Queryable.Where
,它生成一个表达式树(当由ToList枚举时)被转换为sql并在数据库服务器上执行.据推测,数据库服务器将利用基于过滤条件的索引,以避免读取整个表. Func版本调用Enumerable.Where
(当由ToList枚举时)加载整个表(您认为是挂起),然后针对内存中对象运行过滤条件.
以上是内存溢出为你收集整理的c# – 为什么Func <>和Expression>可互换?为什么一个人在我的情况下工作?全部内容,希望文章能够帮你解决c# – 为什么Func <>和Expression>可互换?为什么一个人在我的情况下工作?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)