find method

Future<List<SessionLogEntry>> find(
  1. Session session, {
  2. WhereExpressionBuilder<SessionLogEntryTable>? where,
  3. int? limit,
  4. int? offset,
  5. OrderByBuilder<SessionLogEntryTable>? orderBy,
  6. bool orderDescending = false,
  7. OrderByListBuilder<SessionLogEntryTable>? orderByList,
  8. Transaction? transaction,
})

Implementation

Future<List<SessionLogEntry>> find(
  _i1.Session session, {
  _i1.WhereExpressionBuilder<SessionLogEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<SessionLogEntryTable>? orderBy,
  bool orderDescending = false,
  _i1.OrderByListBuilder<SessionLogEntryTable>? orderByList,
  _i1.Transaction? transaction,
}) async {
  return session.dbNext.find<SessionLogEntry>(
    where: where?.call(SessionLogEntry.t),
    orderBy: orderBy?.call(SessionLogEntry.t),
    orderByList: orderByList?.call(SessionLogEntry.t),
    orderDescending: orderDescending,
    limit: limit,
    offset: offset,
    transaction: transaction,
  );
}