hello kentico dev i try to apply a scheduled task to save data in custom table and now i try to delete all records in one time not one by one is there any methode in c# thanks
I believe the best solution for this is to use this method:
CustomTableItemProvider.DeleteItems(className);
You can also simply call a SQL Query to truncate the table.
TRUNCATE TABLE <table name>
Please, sign in to be able to submit a new answer.