delete method

Future<QueryResult> delete({
  1. required Where where,
  2. Returning? returning,
  3. SQLExecutor? executor,
})

Implementation

Future<QueryResult> delete({required Where where, Returning? returning, SQLExecutor? executor}) async {
  return await (executor ?? defaultExecutor).delete(tableName, where: where, returning: returning);
}