first property
QuerySingle<(Expr<A> , Expr<B> )>
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>)> get first => QuerySingle._(limit(1));