DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / ClientViewSource Class / PageSize Property

In This Topic
    PageSize Property (ClientViewSource)
    In This Topic
    Gets or sets the number of items displayed on each page of the DataView, or the number of items to fetch in each query in virtual mode, or 0 to disable paging.
    Syntax
    'Declaration
     
    Public Property PageSize As Integer
    public int PageSize {get; set;}
    Remarks
    If not in the virtual mode, a non-zero page size will cause the number of entities loaded with each Load operation to be limited, using server-side paging.
    See Also