Represents a client view that loads entities sequentially (progressively) page by page. The user sees the result and can interact with it before all pages are loaded.

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

Syntax

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

Type Parameters

T
The type of the entities in this view.

Remarks

Sorting is required, loading entities progressively 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..::..ProgressiveView<(Of <(<'T>)>)>

See Also