var t1 = source.OrderBy<T>(orderby).Skip<T>(_skip).Take<T>(_take);
var t2 = t1.ToObjectQuery().ToTraceString();

 

不要用:
 source = source.OrderBy<T>(orderby).Skip<T>(_skip).Take<T>(_take).Future<T>().AsEnumerable().AsQueryable<T>();

 

 

 

Q:ObjectQuery和IQueryable之间的关系

A:https://www.cnblogs.com/fengxiaoling/p/4560741.html

相关文章:

  • 2021-12-22
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
  • 2022-03-04
  • 2022-12-23
  • 2022-01-02
相关资源
相似解决方案