Delete all records from a table
2 answers
Help is located at http://subsonicproject.com/docs/Main_Page and many examples for this are in the tests included in the source.
int records = new Delete().From(Product.Schema)
.Where("UnitPrice")
.IsGreaterThan(42.00)
.Execute();
// Delete all rows.
int records = new Delete().From(Product.Schema).Execute();
+1
a source to share