Queryable.TakeLast<TSource>(IQueryable<TSource>, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a new queryable sequence that contains the last count
elements from source
.
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)
Type Parameters
- TSource
The type of the elements in the queryable sequence.
Parameters
- source
- IQueryable<TSource>
A queryable sequence instance.
- count
- Int32
The number of elements to take from the end of the queryable sequence.
Returns
A new queryable sequence that contains the last count
elements from source
.
Exceptions
source
is null
.
Remarks
If count
is not a positive number, this method returns an empty queryable sequence.