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

Operators

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