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