first property

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