How to empty a persistent entity?

0
Hi! How can I delete the data of a persistent entity?
asked
3 answers
1

Do you want to delete an object or all objects of this entity.

If you want to delete the whole table, you need to create a microflow that retrieves all of them and then use the delete Action.

answered
1

if you have a lot of data to delete, you should think about to run the delete action not in one list or in a lot of small delete actions, you could create small batches of lists and then delete the small batches.

More information you can find in the Academy section.

answered
0

In a microflow, use the Delete action.

Or, in a datagrid, use a Delete button in the control bar.

answered