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

Operators

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