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

In This Topic
    AutoLoad Property (ClientViewSource)
    In This Topic
    Gets or sets a value indicating whether Load is automatically invoked on startup and when a change occurs that impacts the query composed by the ClientViewSource. The default is True.
    Syntax
    'Declaration
     
    Public Property AutoLoad As Boolean
    public bool AutoLoad {get; set;}
    Remarks
    When AutoLoad is True, any property change affecting the load query will automatically invoke a Load after the specified LoadDelay. Examples of properties that impact the query are PageSize and FilterOperator. Also, changes to dependency object collections like FilterDescriptors and changes to the dependency properties on elements contained in those collections will affect the query and prompt an automatic Load.
    See Also