DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / ClientViewSource Class / DeferLoad Method

In This Topic
    DeferLoad Method
    In This Topic
    Used to group changes to multiple load-affecting properties together, deferring the resulting load operations so a single load operation is performed in the end, that is, when the object returned from this method is disposed.
    Syntax
    'Declaration
     
    Public Function DeferLoad() As IDisposable
    public IDisposable DeferLoad()

    Return Value

    An System.IDisposable object that will trigger a Load operation when disposed using the System.IDisposable.Dispose method.
    See Also