delete method

Future<int> delete()

Deletes all rows matched by built statement

Returns the amount of rows that were deleted by this statement directly (not including additional rows that might be affected through triggers or foreign key constraints).

Implementation

Future<int> delete() => $state.buildDeleteStatement().go();