findSingleRow static method
Implementation
@Deprecated('Will be removed in 2.0.0. Use: db.findRow instead.')
static Future<SessionLogEntry?> findSingleRow(
_i1.Session session, {
_i1.WhereExpressionBuilder<SessionLogEntryTable>? where,
int? offset,
_i1.Column? orderBy,
bool orderDescending = false,
bool useCache = true,
_i1.Transaction? transaction,
}) async {
return session.db.findSingleRow<SessionLogEntry>(
where: where != null ? where(SessionLogEntry.t) : null,
offset: offset,
orderBy: orderBy,
orderDescending: orderDescending,
useCache: useCache,
transaction: transaction,
);
}