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

Operators

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