insertRow method
Inserts a single QueryLogEntry and returns the inserted row.
The returned QueryLogEntry will have its id
field set.
Implementation
Future<QueryLogEntry> insertRow(
_i1.Session session,
QueryLogEntry row, {
_i1.Transaction? transaction,
}) async {
return session.db.insertRow<QueryLogEntry>(
row,
transaction: transaction,
);
}