Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

QueryableExtensions::Skip<TSource> Method (IQueryable<TSource>^, Expression<Func<Int32>^>^)

Entity Framework 6.0
 

Bypasses a specified number of elements in a sequence and then returns the remaining elements.

Namespace:   System.Data.Entity
Assembly:  EntityFramework (in EntityFramework.dll)

public:
generic<typename TSource>
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[ExtensionAttribute]
static IQueryable<TSource>^ Skip(
	IQueryable<TSource>^ source,
	Expression<Func<int>^>^ countAccessor
)

Parameters

source
Type: System.Linq::IQueryable<TSource>^

A sequence to return elements from.

countAccessor
Type: System.Linq.Expressions::Expression<Func<Int32>^>^

An expression that evaluates to the number of elements to skip.

Return Value

Type: System.Linq::IQueryable<TSource>^

A sequence that contains elements that occur after the specified index in the input sequence.

Type Parameters

TSource

The type of the elements of source.

Return to top
Show: