ComponentOne Data Source for Entity Framework
C1.Data.DataSource Namespace / ClientViewSource Class / LoadSize Property

In This Topic
    LoadSize Property (ClientViewSource)
    In This Topic
    Gets or sets the maximum number of items to load each time a Load is executed. When equal to 0, all requested entities will be loaded. The default is 0.
    Syntax
    'Declaration
     
    
    Public Property LoadSize As System.Integer
    public System.int LoadSize {get; set;}
    Remarks

    When PageSize and LoadSize are both non-zero, entities will be loaded using the multiple of PageSize nearest LoadSize. This allows multiple pages to be loaded at once without loading partial pages.

    This property is ignored when the ClientViewSource is in virtual mode.

    See Also