deleteWhere method
Future<List<CloudStorageEntry> >
deleteWhere(
- DatabaseAccessor databaseAccessor, {
- required WhereExpressionBuilder<
CloudStorageEntryTable> where, - Transaction? transaction,
Implementation
Future<List<CloudStorageEntry>> deleteWhere(
_i1.DatabaseAccessor databaseAccessor, {
required _i1.WhereExpressionBuilder<CloudStorageEntryTable> where,
_i1.Transaction? transaction,
}) async {
return databaseAccessor.db.deleteWhere<CloudStorageEntry>(
where: where(CloudStorageEntry.t),
transaction: transaction ?? databaseAccessor.transaction,
);
}