Repository<T extends Object, IO extends InsertOneParams, IM extends InsertManyParams, FO extends FindOneParams, FM extends FindManyParams, UO extends UpdateOneParams, UM extends UpdateManyParams, DO extends DeleteOneParams, DM extends DeleteManyParams> class abstract

Constructors

Repository.new()
const

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

deleteMany(DM params) AsyncResult<List<T>, DSQLException>
deleteOne(DO params) AsyncResult<T, DSQLException>
findMany([FM params]) AsyncResult<List<T>, DSQLException>
findManyPaginated([FM params]) AsyncResult<Page<T>, DSQLException>
findOne(FO params) AsyncResult<T, DSQLException>
insertMany(IM params) AsyncResult<List<T>, DSQLException>
insertOne(IO params) AsyncResult<T, DSQLException>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
updateMany(UM params) AsyncResult<List<T>, DSQLException>
updateOne(UO params) AsyncResult<T, DSQLException>

Operators

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