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




KellermanSoftware.NetDataAccessLayer Namespace > DataHelper Class > LoadAll Method : LoadAll<T>() Method
Generic class type
Load all the records from a table into a class list
Syntax
Public Overloads Overridable Function LoadAll(Of T As {Class, New})() As List(Of T)
Dim instance As DataHelper
Dim value As List(Of T)
 
value = instance.LoadAll(Of T)()
public virtual List<T> LoadAll<T>()
where T: class, new()
public: virtual List<T*>* LoadAll<T>(); 
where T: ref class, gcnew()
public:
virtual 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

DataHelper Class
DataHelper Members
Overload List