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

Operators

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