Queryable.SkipLast<TSource>(IQueryable<TSource>, Int32) Method

Definition

Returns a new queryable sequence that contains the elements from source with the last count elements of the source queryable sequence omitted.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ SkipLast(System::Linq::IQueryable<TSource> ^ source, int count);
public static System.Linq.IQueryable<TSource> SkipLast<TSource> (this System.Linq.IQueryable<TSource> source, int count);
static member SkipLast : System.Linq.IQueryable<'Source> * int -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function SkipLast(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.

count
Int32

The number of elements to omit from the end of the queryable sequence.

Returns

IQueryable<TSource>

A new queryable sequence that contains the elements from source minus count elements from the end of the queryable sequence.

Exceptions

source is null.

Remarks

If count is not a positive number, this method returns an identical copy of the source queryable sequence.

Applies to