Knight Data Access Layer
LoadPage<T>(Int32,Int32) Method




KellermanSoftware.NetDataAccessLayer Namespace > ObjectCrud Class > LoadPage Method : LoadPage<T>(Int32,Int32) Method
Generic class type
Page of records starting at 1
The number of records to get per page
Load a page of records
Syntax
Public Overloads Function LoadPage(Of T As {Class, New})( _
   ByVal page As Integer, _
   ByVal pageSize As Integer _
) As List(Of T)
Dim instance As ObjectCrud
Dim page As Integer
Dim pageSize As Integer
Dim value As List(Of T)
 
value = instance.LoadPage(Of T)(page, pageSize)
public List<T> LoadPage<T>( 
   int page,
   int pageSize
)
where T: class, new()
public: List<T*>* LoadPage<T>( 
   int page,
   int pageSize
) 
where T: ref class, gcnew()
public:
List<T^>^ LoadPagegeneric<typename T>
( 
   int page,
   int pageSize
) 
where T: ref class, gcnew()

Parameters

page
Page of records starting at 1
pageSize
The number of records to get per page

Type Parameters

T
Generic class type
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ObjectCrud Class
ObjectCrud Members
Overload List