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