first property

QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> 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>, Expr<D>, Expr<E>, Expr<F>)>
    get first => _query.first;