find method

Implementation

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