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

Operators

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