Represents a paged client view.

Namespace:  C1.Data
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
public class PagingView<T> : ClientView<T>, 
	IPagedCollectionView, IPagedCollectionViewEx
Visual Basic
Public Class PagingView(Of T) _
	Inherits ClientView(Of T) _
	Implements IPagedCollectionView, IPagedCollectionViewEx

Type Parameters

T
The type of the entities in the client view.

Remarks

Paging is performed on the server. It is controled by the PageSize and PageIndex properties.

Sorting is required, paging entities is impossible without sort.

Inheritance Hierarchy

System..::..Object
  C1.LiveLinq.LiveViews..::..View
    C1.LiveLinq.LiveViews..::..View<(Of <(<'T>)>)>
      C1.Data..::..ClientView<(Of <(<'T>)>)>
        C1.Data..::..PagingView<(Of <(<'T>)>)>

See Also