Queryable.SkipWhile<TSource> 方法 (IQueryable<TSource>, Expression<Func<TSource, Int32, Boolean>>)
类型参数
- TSource
-
source 中的元素的类型。
参数
- source
- 类型:System.Linq.IQueryable<TSource>
要从中返回元素的 IQueryable<T>。
- predicate
- 类型:System.Linq.Expressions.Expression<Func<TSource, Int32, Boolean>>
用于测试每个元素是否满足条件的函数;此函数的第二个参数表示源元素的索引。 - Queryable.SkipWhile<TSource> 方法 (IQueryable<TSource>, Expression<Func<TSource, Boolean>>)
-
类型参数
- TSource
-
source 中的元素的类型。
参数
- source
- 类型:System.Linq.IQueryable<TSource>
要从中返回元素的 IQueryable<T>。
- predicate
- 类型:System.Linq.Expressions.Expression<Func<TSource, Boolean>>
用于测试每个元素是否满足条件的函数。
时间: 2024-10-10 16:54:55