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




KellermanSoftware.NetDataAccessLayer Namespace > IObjectCrud Interface > LoadPage Method : LoadPage<T>(String,Int32,Int32) Method
Generic class type
Order by SQL Clause
Page of records starting at 1
The number of records to get per page
Load a page of records that are ordered
Syntax
Overloads Function LoadPage(Of T As {Class, New})( _
   ByVal orderBy As String, _
   ByVal page As Integer, _
   ByVal pageSize As Integer _
) As List(Of T)
Dim instance As IObjectCrud
Dim orderBy As String
Dim page As Integer
Dim pageSize As Integer
Dim value As List(Of T)
 
value = instance.LoadPage(Of T)(orderBy, page, pageSize)
List<T> LoadPage<T>( 
   string orderBy,
   int page,
   int pageSize
)
where T: class, new()
List<T*>* LoadPage<T>( 
   string* orderBy,
   int page,
   int pageSize
) 
where T: ref class, gcnew()
List<T^>^ LoadPagegeneric<typename T>
( 
   String^ orderBy,
   int page,
   int pageSize
) 
where T: ref class, gcnew()

Parameters

orderBy
Order by SQL Clause
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

IObjectCrud Interface
IObjectCrud Members
Overload List