Truncating a table will delete all the records in a table.
'Get the current instance of the helper
Dim db As IDataHelper = DataHelper.SessionFactory()
db.TruncateTable(Of SalesPeople)()
OR
db.TruncateTable("Person")