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

Operators

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