I've been trying to truncate tables from NetTiers and came up with the following technique that does not require Stored Procedures.
DataRepository
.Provider.ExecuteNonQuery(
CommandType.Text,
"Truncate Table myTable");
Be aware I had to include the following Reference to my project: System.Configuration;