deleteWhere method
      
Future<List<CloudStorageEntry> > 
deleteWhere(
    
- Session session, {
- required WhereExpressionBuilder<CloudStorageEntryTable> where,
- Transaction? transaction,
Deletes all rows matching the where expression.
Implementation
Future<List<CloudStorageEntry>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<CloudStorageEntryTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteWhere<CloudStorageEntry>(
    where: where(CloudStorageEntry.t),
    transaction: transaction,
  );
}