Knight Data Access Layer
LoadAll<T>() Method
Example 




KellermanSoftware.NetDataAccessLayer Namespace > IDataHelper Interface > LoadAll Method : LoadAll<T>() Method
Generic class type
Load all the records from a table into a class list
Syntax
Overloads Function LoadAll(Of T As {Class, New})() As List(Of T)
Dim instance As IDataHelper
Dim value As List(Of T)
 
value = instance.LoadAll(Of T)()
List<T> LoadAll<T>()
where T: class, new()
List<T*>* LoadAll<T>(); 
where T: ref class, gcnew()
List<T^>^ LoadAllgeneric<typename T>
(); 
where T: ref class, gcnew()

Type Parameters

T
Generic class type

Return Value

A list of objects
Example
//Get the current thread static safe instance of the helper
IDataHelper db = DataHelper.SessionFactory();
 
//Specify User Name and License Key from the receipt, leave blank for trial mode
//db.UserName = "John Smith 1234";
//db.LicenseKey = "asdfl219==";
 
//Log to the console
db.EnableLogging();
 
//Open the database connection
db.OpenConnection();
 
//Create a new Person to save to the database
Person currentPerson = new Person();
currentPerson.FirstName = "John";
currentPerson.LastName = "Smith";
 
//Save it to the database 
db.Save(currentPerson);
 
//Load all the records from a table into a class list
List<Person> personList = db.LoadAll<Person>();
 
//Close the connection
db.CloseConnection();
'Get the current thread static safe instance of the helper
Dim db As IDataHelper = DataHelper.SessionFactory()
 
'Specify User Name and License Key from the receipt, leave blank for trial mode
'db.UserName = "John Smith 1234"
'db.LicenseKey = "asdfl219=="
 
'Log to the console
db.EnableLogging()
 
'Open the database connection
db.OpenConnection()
 
'Create a new Person to save to the database
Dim currentPerson As New Person()
currentPerson.FirstName = "John"
currentPerson.LastName = "Smith"
 
'Save it to the database 
db.Save(currentPerson)
 
'Load all the records from a table into a class list
Dim personList As List(Of Person) = db.LoadAll(Of Person)()
 
'Close the connection
db.CloseConnection()
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

IDataHelper Interface
IDataHelper Members
Overload List