本文介绍了返回类型Iquerable的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们将如何为IQuerable<>取值返回类型函数

how we will take a value for IQuerable<> return type function

推荐答案

public static IQueryable<TSource> Page<TSource>(this IQueryable<TSource> source,
int currentPage, int pageSize)
{
    return source.Skip((currentPage - 1) * pageSize).Take(pageSize);
}



问候
sarva



regards
sarva


这篇关于返回类型Iquerable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 06:36