Argument to condition. Callback that takes in a ConditionBuilder!T and returns a Condition that can easily be created using that builder.
Deletes all entries in this model.
Deletes the passed-in values by limiting the delete operation to the primary key of this instance.
Deletes the rows matching this condition. Maps to the WHERE clause in an SQL statement.
Deletes the passed-in value by limiting the delete operation to the primary key of this instance.
This is the builder struct that's used for delete operations.
Don't construct this struct manually, use the db.remove or tx.remove method to create this struct.
Finishing methods you can call on this builder: - byCondition to delete all rows matching the condition. - single to delete a single instance or patch, matched by primary key. - bulk to delete multiple instances or patches in bulk, matched by primary key. - all to delete all rows in the table.