Queryable.Take 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Take<TSource>(IQueryable<TSource>, Int32) |
从序列的开头返回指定数量的相邻元素。 |
Take<TSource>(IQueryable<TSource>, Range) |
从序列中返回指定范围的连续元素。 |
Take<TSource>(IQueryable<TSource>, Int32)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
从序列的开头返回指定数量的相邻元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TSource> ^ Take(System::Linq::IQueryable<TSource> ^ source, int count);
public static System.Linq.IQueryable<TSource> Take<TSource> (this System.Linq.IQueryable<TSource> source, int count);
static member Take : System.Linq.IQueryable<'Source> * int -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Take(Of TSource) (source As IQueryable(Of TSource), count As Integer) As IQueryable(Of TSource)
类型参数
- TSource
source
的元素类型。
参数
- source
- IQueryable<TSource>
要从其返回元素的序列。
- count
- Int32
要返回的元素数量。
返回
一个 IQueryable<T>,包含从 source
开始处的指定数量的元素。
例外
source
为 null
。
示例
下面的代码示例演示如何使用 Take<TSource>(IQueryable<TSource>, Int32) 从序列的开头返回元素。
int[] grades = { 59, 82, 70, 56, 92, 98, 85 };
// Sort the grades in descending order and take the first three.
IEnumerable<int> topThreeGrades =
grades.AsQueryable().OrderByDescending(grade => grade).Take(3);
Console.WriteLine("The top three grades are:");
foreach (int grade in topThreeGrades)
Console.WriteLine(grade);
/*
This code produces the following output:
The top three grades are:
98
92
85
*/
Dim grades() As Integer = {59, 82, 70, 56, 92, 98, 85}
' Sort the grades in descending order and take the first three.
Dim topThreeGrades = _
grades.AsQueryable().OrderByDescending(Function(grade) grade).Take(3)
Dim output As New System.Text.StringBuilder
output.AppendLine("The top three grades are:")
For Each grade As Integer In topThreeGrades
output.AppendLine(grade)
Next
' Display the output.
MsgBox(output.ToString())
' This code produces the following output:
' The top three grades are:
' 98
' 92
' 85
注解
方法 Take<TSource>(IQueryable<TSource>, Int32) 生成一个 , MethodCallExpression 它将调用 Take<TSource>(IQueryable<TSource>, Int32) 自身表示为构造的泛型方法。 然后,MethodCallExpressionCreateQuery(Expression)它将 传递给 由 Provider 参数的 属性表示的 的 source
方法IQueryProvider。
由于执行表示调用 Take<TSource>(IQueryable<TSource>, Int32) 的表达式树而发生的查询行为取决于参数类型的 source
实现。 预期行为是它从 的开头获取第一个count
source
元素。
适用于
Take<TSource>(IQueryable<TSource>, Range)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
从序列中返回指定范围的连续元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TSource> ^ Take(System::Linq::IQueryable<TSource> ^ source, Range range);
public static System.Linq.IQueryable<TSource> Take<TSource> (this System.Linq.IQueryable<TSource> source, Range range);
static member Take : System.Linq.IQueryable<'Source> * Range -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Take(Of TSource) (source As IQueryable(Of TSource), range As Range) As IQueryable(Of TSource)
类型参数
- TSource
source
的元素类型。
参数
- source
- IQueryable<TSource>
要从其返回元素的序列。
- range
- Range
要返回的元素范围,其中包含从开始或结束开始的开始和结束索引。
返回
一个 IQueryable<T> ,它包含序列中指定 range
元素的 source
。
例外
source
为 null
。