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