'Declaration Public Function New( _ ByVal queryableSource As IQueryable, _ ByVal autoCreateItemProperties As Boolean, _ ByVal pageSize As Integer, _ ByVal maxRealizedItemCount As Integer _ )
'Usage Dim queryableSource As IQueryable Dim autoCreateItemProperties As Boolean Dim pageSize As Integer Dim maxRealizedItemCount As Integer Dim instance As New DataGridVirtualizingQueryableCollectionView(queryableSource, autoCreateItemProperties, pageSize, maxRealizedItemCount)
public DataGridVirtualizingQueryableCollectionView( IQueryable queryableSource, bool autoCreateItemProperties, int pageSize, int maxRealizedItemCount )
Parameters
- queryableSource
- The IQueryable source that will provide the data items.
- autoCreateItemProperties
- true if item properties are to be automatically created; false otherwise.
- pageSize
- The number of items that are contained in each page of data that is loaded in memory.
- maxRealizedItemCount
- The maximum amount of items that can be loaded in memory.