FutureCallEntryRepository 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<FutureCallEntryTable>? where, int? limit, Transaction? transaction}) Future<int>
Counts the number of rows matching the where expression. If omitted, will return the count of all rows in the table.
delete(Session session, List<FutureCallEntry> rows, {Transaction? transaction}) Future<List<FutureCallEntry>>
Deletes all FutureCallEntrys in the list and returns the deleted rows. This is an atomic operation, meaning that if one of the rows fail to be deleted, none of the rows will be deleted.
deleteRow(Session session, FutureCallEntry row, {Transaction? transaction}) Future<FutureCallEntry>
Deletes a single FutureCallEntry.
deleteWhere(Session session, {required WhereExpressionBuilder<FutureCallEntryTable> where, Transaction? transaction}) Future<List<FutureCallEntry>>
Deletes all rows matching the where expression.
find(Session session, {WhereExpressionBuilder<FutureCallEntryTable>? where, int? limit, int? offset, OrderByBuilder<FutureCallEntryTable>? orderBy, bool orderDescending = false, OrderByListBuilder<FutureCallEntryTable>? orderByList, Transaction? transaction}) Future<List<FutureCallEntry>>
Returns a list of FutureCallEntrys matching the given query parameters.
findById(Session session, int id, {Transaction? transaction}) Future<FutureCallEntry?>
Finds a single FutureCallEntry by its id or null if no such row exists.
findFirstRow(Session session, {WhereExpressionBuilder<FutureCallEntryTable>? where, int? offset, OrderByBuilder<FutureCallEntryTable>? orderBy, bool orderDescending = false, OrderByListBuilder<FutureCallEntryTable>? orderByList, Transaction? transaction}) Future<FutureCallEntry?>
Returns the first matching FutureCallEntry matching the given query parameters.
insert(Session session, List<FutureCallEntry> rows, {Transaction? transaction}) Future<List<FutureCallEntry>>
Inserts all FutureCallEntrys in the list and returns the inserted rows.
insertRow(Session session, FutureCallEntry row, {Transaction? transaction}) Future<FutureCallEntry>
Inserts a single FutureCallEntry and returns the inserted row.
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<FutureCallEntry> rows, {ColumnSelections<FutureCallEntryTable>? columns, Transaction? transaction}) Future<List<FutureCallEntry>>
Updates all FutureCallEntrys in the list and returns the updated rows. If columns is provided, only those columns will be updated. Defaults to all columns. This is an atomic operation, meaning that if one of the rows fails to update, none of the rows will be updated.
updateRow(Session session, FutureCallEntry row, {ColumnSelections<FutureCallEntryTable>? columns, Transaction? transaction}) Future<FutureCallEntry>
Updates a single FutureCallEntry. The row needs to have its id set. Optionally, a list of columns can be provided to only update those columns. Defaults to all columns.

Operators

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