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