Queryable.ElementAt Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
ElementAt<TSource>(IQueryable<TSource>, Index) |
Vrátí element v zadaném indexu v sekvenci. |
ElementAt<TSource>(IQueryable<TSource>, Int32) |
Vrátí element v zadaném indexu v sekvenci. |
ElementAt<TSource>(IQueryable<TSource>, Index)
- Zdroj:
- Queryable.cs
- Zdroj:
- Queryable.cs
- Zdroj:
- Queryable.cs
Vrátí element v zadaném indexu v sekvenci.
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
Parametry typu
- TSource
Typ elementů .source
Parametry
- source
- IQueryable<TSource>
An IQueryable<T> , ze které se vrátí prvek.
- index
- Index
Index elementu, který se má načíst, který je buď od začátku, nebo na konci.
Návraty
Prvek na zadané pozici v sekvenci source
.
Výjimky
source
je null
.
index
je mimo hranice source
sekvence.
Platí pro
ElementAt<TSource>(IQueryable<TSource>, Int32)
- Zdroj:
- Queryable.cs
- Zdroj:
- Queryable.cs
- Zdroj:
- Queryable.cs
Vrátí element v zadaném indexu v sekvenci.
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
Parametry typu
- TSource
Typ elementů .source
Parametry
- source
- IQueryable<TSource>
An IQueryable<T> , ze které se vrátí prvek.
- index
- Int32
Index elementu založeného na nule, který se má načíst.
Návraty
Element na zadané pozici v source
.
Výjimky
source
je null
.
Hodnota index
je menší než nula.
Příklady
Následující příklad kódu ukazuje, jak použít ElementAt<TSource>(IQueryable<TSource>, Int32) k vrácení elementu na konkrétní pozici v sekvenci.
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'.
Poznámky
Metoda ElementAt<TSource>(IQueryable<TSource>, Int32) vygeneruje metodu MethodCallExpression , která představuje volání ElementAt<TSource>(IQueryable<TSource>, Int32) sebe sama jako konstruovanou obecnou metodu. Pak předá MethodCallExpression metodu IQueryProviderExecute<TResult>(Expression) reprezentované Provider vlastností parametru source
.
Chování dotazu, ke kterému dochází v důsledku spuštění stromu výrazů, který představuje volání ElementAt<TSource>(IQueryable<TSource>, Int32) , závisí na implementaci typu parametru source
. Očekávané chování je, že vrátí položku na pozici index
v source
.