first property

Expr<T?> get first

Use the first row of this query as subquery expression.

This is equivalent to (SELECT * FROM this LIMIT 1) in SQL.

Implementation

Expr<T?> get first => _query.first;