delete static method
- @Deprecated('Will be removed in 2.0.0. Use: db.deleteWhere instead.')
- Session session, {
- required WhereExpressionBuilder<
MethodInfoTable> where, - Transaction? transaction,
Implementation
@Deprecated('Will be removed in 2.0.0. Use: db.deleteWhere instead.')
static Future<int> delete(
_i1.Session session, {
required _i1.WhereExpressionBuilder<MethodInfoTable> where,
_i1.Transaction? transaction,
}) async {
return session.db.delete<MethodInfo>(
where: where(MethodInfo.t),
transaction: transaction,
);
}