Queryable.TakeLast<TSource>(IQueryable<TSource>, Int32) Yöntem

Tanım

öğesinden sourceson count öğeleri içeren sorgulanabilir yeni bir sıra döndürür.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ TakeLast(System::Linq::IQueryable<TSource> ^ source, int count);
public static System.Linq.IQueryable<TSource> TakeLast<TSource> (this System.Linq.IQueryable<TSource> source, int count);
static member TakeLast : System.Linq.IQueryable<'Source> * int -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function TakeLast(Of TSource) (source As IQueryable(Of TSource), count As Integer) As IQueryable(Of TSource)

Tür Parametreleri

TSource

Sorgulanabilir dizideki öğelerin türü.

Parametreler

source
IQueryable<TSource>

Sorgulanabilir bir sıra örneği.

count
Int32

Sorgulanabilir sıranın sonundan alınması gereken öğe sayısı.

Döndürülenler

IQueryable<TSource>

öğesinden sourceson count öğeleri içeren sorgulanabilir yeni bir sıra.

Özel durumlar

source, null değeridir.

Açıklamalar

Pozitif bir sayı değilse count , bu yöntem sorgulanabilir boş bir sıra döndürür.

Şunlara uygulanır