findSingleRow static method
Future<LogEntry?>
findSingleRow(
- Session session, {
- LogEntryExpressionBuilder? where,
- int? offset,
- Column? orderBy,
- bool orderDescending = false,
- bool useCache = true,
- Transaction? transaction,
Implementation
static Future<LogEntry?> findSingleRow(
_i1.Session session, {
LogEntryExpressionBuilder? where,
int? offset,
_i1.Column? orderBy,
bool orderDescending = false,
bool useCache = true,
_i1.Transaction? transaction,
}) async {
return session.db.findSingleRow<LogEntry>(
where: where != null ? where(LogEntry.t) : null,
offset: offset,
orderBy: orderBy,
orderDescending: orderDescending,
useCache: useCache,
transaction: transaction,
);
}