deleteWhere method

Future<List<CloudStorageEntry>> deleteWhere(
  1. Session session, {
  2. required WhereExpressionBuilder<CloudStorageEntryTable> where,
  3. Transaction? transaction,
})

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,
  );
}