Queryable.ElementAt 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ElementAt<TSource>(IQueryable<TSource>, Index) |
返回序列中指定索引处的元素。 |
ElementAt<TSource>(IQueryable<TSource>, Int32) |
返回序列中指定索引处的元素。 |
ElementAt<TSource>(IQueryable<TSource>, Index)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
返回序列中指定索引处的元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource ElementAt(System::Linq::IQueryable<TSource> ^ source, Index index);
public static TSource ElementAt<TSource> (this System.Linq.IQueryable<TSource> source, Index index);
static member ElementAt : System.Linq.IQueryable<'Source> * Index -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IQueryable(Of TSource), index As Index) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IQueryable<TSource>
要从中返回元素的 IQueryable<T>。
- index
- Index
要检索的元素的索引,从开头或结尾开始。
返回
位于序列中指定位置的 source
元素。
例外
source
为 null
。
index
超出了序列的 source
边界。
适用于
ElementAt<TSource>(IQueryable<TSource>, Int32)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
返回序列中指定索引处的元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource ElementAt(System::Linq::IQueryable<TSource> ^ source, int index);
public static TSource ElementAt<TSource> (this System.Linq.IQueryable<TSource> source, int index);
static member ElementAt : System.Linq.IQueryable<'Source> * int -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IQueryable(Of TSource), index As Integer) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IQueryable<TSource>
要从中返回元素的 IQueryable<T>。
- index
- Int32
要检索的从零开始的元素索引。
返回
source
中指定位置处的元素。
例外
source
为 null
。
index
小于零。
示例
下面的代码示例演示如何使用 ElementAt<TSource>(IQueryable<TSource>, Int32) 返回序列中特定位置的元素。
string[] names = { "Hartono, Tommy", "Adams, Terry",
"Andersen, Henriette Thaulow",
"Hedlund, Magnus", "Ito, Shu" };
Random random = new Random(DateTime.Now.Millisecond);
string name =
names.AsQueryable().ElementAt(random.Next(0, names.Length));
Console.WriteLine("The name chosen at random is '{0}'.", name);
/*
This code produces the following sample output.
Yours may be different due to the use of Random.
The name chosen at random is 'Ito, Shu'.
*/
Dim names() As String = {"Hartono, Tommy", "Adams, Terry", _
"Andersen, Henriette Thaulow", _
"Hedlund, Magnus", "Ito, Shu"}
Dim rand As New Random(DateTime.Now.Millisecond)
Dim name As String = _
names.AsQueryable().ElementAt(rand.Next(0, names.Length))
MsgBox(String.Format("The name chosen at random is '{0}'.", name))
' This code produces the following sample output.
' Yours may be different due to the use of Random.
'
' The name chosen at random is 'Ito, Shu'.
注解
方法 ElementAt<TSource>(IQueryable<TSource>, Int32) 生成一个 , MethodCallExpression 它将调用 ElementAt<TSource>(IQueryable<TSource>, Int32) 自身表示为构造的泛型方法。 然后,MethodCallExpressionExecute<TResult>(Expression)它将 传递给 由 Provider 参数的 属性表示的 的 source
方法IQueryProvider。
由于执行表示调用 ElementAt<TSource>(IQueryable<TSource>, Int32) 的表达式树而发生的查询行为取决于参数类型的 source
实现。 预期行为是返回 中位置 index
处 source
的项。