//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==";
db.ExecuteNonQuery("INSERT INTO Person (FirstName,LastName) VALUES ('Stan','Man')");
db.ExecuteNonQuery("INSERT INTO Person (FirstName,LastName) VALUES ('Dan','Man')");
db.ExecuteNonQuery("INSERT INTO Person (FirstName,LastName) VALUES ('Dan','Abel')");
List<Dictionary<string, object>> list = db.LoadTop("Person", "ORDER BY LastName", 1);