To delete records from a table entity, use the eq method to qualify the records to be deleted and then call the delete method.
eq
delete
The following example will delete the record from the Category table with the CategoryId of 10.
Category
CategoryId
10
Categories.select() .eq(CategoriesField.CategoryID, 10) .delete();
Last updated 2 years ago