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.
Namespace:
C1.Data.DataSourceAssembly: C1.Silverlight.Data.Entity (in C1.Silverlight.Data.Entity.dll)
Syntax
C# |
---|
[DefaultValueAttribute()] public int LoadSize { get; set; } |
Visual Basic |
---|
<DefaultValueAttribute()> _ Public Property LoadSize As Integer 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.