first property

QuerySingle<(Expr<A>, Expr<B>, Expr<C>)> get first

Limit Query to the first row using LIMIT clause.

This returns a QuerySingle which contains at-most one row.

Implementation

QuerySingle<(Expr<A>, Expr<B>, Expr<C>)> get first => _query.first;