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