QueryLogEntryRepository 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<QueryLogEntryTable>? where, int? limit, Transaction? transaction}) Future<int>
delete(DatabaseAccessor databaseAccessor, List<QueryLogEntry> rows, {Transaction? transaction}) Future<List<QueryLogEntry>>
deleteRow(DatabaseAccessor databaseAccessor, QueryLogEntry row, {Transaction? transaction}) Future<QueryLogEntry>
deleteWhere(DatabaseAccessor databaseAccessor, {required WhereExpressionBuilder<QueryLogEntryTable> where, Transaction? transaction}) Future<List<QueryLogEntry>>
find(DatabaseAccessor databaseAccessor, {WhereExpressionBuilder<QueryLogEntryTable>? where, int? limit, int? offset, OrderByBuilder<QueryLogEntryTable>? orderBy, bool orderDescending = false, OrderByListBuilder<QueryLogEntryTable>? orderByList, Transaction? transaction}) Future<List<QueryLogEntry>>
findById(DatabaseAccessor databaseAccessor, int id, {Transaction? transaction}) Future<QueryLogEntry?>
findFirstRow(DatabaseAccessor databaseAccessor, {WhereExpressionBuilder<QueryLogEntryTable>? where, int? offset, OrderByBuilder<QueryLogEntryTable>? orderBy, bool orderDescending = false, OrderByListBuilder<QueryLogEntryTable>? orderByList, Transaction? transaction}) Future<QueryLogEntry?>
insert(DatabaseAccessor databaseAccessor, List<QueryLogEntry> rows, {Transaction? transaction}) Future<List<QueryLogEntry>>
insertRow(DatabaseAccessor databaseAccessor, QueryLogEntry row, {Transaction? transaction}) Future<QueryLogEntry>
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<QueryLogEntry> rows, {ColumnSelections<QueryLogEntryTable>? columns, Transaction? transaction}) Future<List<QueryLogEntry>>
updateRow(DatabaseAccessor databaseAccessor, QueryLogEntry row, {ColumnSelections<QueryLogEntryTable>? columns, Transaction? transaction}) Future<QueryLogEntry>

Operators

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