MethodInfoRepository class

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

count(DatabaseAccessor databaseAccessor, {WhereExpressionBuilder<MethodInfoTable>? where, int? limit, Transaction? transaction}) Future<int>
delete(DatabaseAccessor databaseAccessor, List<MethodInfo> rows, {Transaction? transaction}) Future<List<MethodInfo>>
deleteRow(DatabaseAccessor databaseAccessor, MethodInfo row, {Transaction? transaction}) Future<MethodInfo>
deleteWhere(DatabaseAccessor databaseAccessor, {required WhereExpressionBuilder<MethodInfoTable> where, Transaction? transaction}) Future<List<MethodInfo>>
find(DatabaseAccessor databaseAccessor, {WhereExpressionBuilder<MethodInfoTable>? where, int? limit, int? offset, OrderByBuilder<MethodInfoTable>? orderBy, bool orderDescending = false, OrderByListBuilder<MethodInfoTable>? orderByList, Transaction? transaction}) Future<List<MethodInfo>>
findById(DatabaseAccessor databaseAccessor, int id, {Transaction? transaction}) Future<MethodInfo?>
findFirstRow(DatabaseAccessor databaseAccessor, {WhereExpressionBuilder<MethodInfoTable>? where, int? offset, OrderByBuilder<MethodInfoTable>? orderBy, bool orderDescending = false, OrderByListBuilder<MethodInfoTable>? orderByList, Transaction? transaction}) Future<MethodInfo?>
insert(DatabaseAccessor databaseAccessor, List<MethodInfo> rows, {Transaction? transaction}) Future<List<MethodInfo>>
insertRow(DatabaseAccessor databaseAccessor, MethodInfo row, {Transaction? transaction}) Future<MethodInfo>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
update(DatabaseAccessor databaseAccessor, List<MethodInfo> rows, {ColumnSelections<MethodInfoTable>? columns, Transaction? transaction}) Future<List<MethodInfo>>
updateRow(DatabaseAccessor databaseAccessor, MethodInfo row, {ColumnSelections<MethodInfoTable>? columns, Transaction? transaction}) Future<MethodInfo>

Operators

operator ==(Object other) bool
The equality operator.
inherited