menu
typed_sql package
documentation
typed_sql.dart
OrderedQueryRange2<A, B>
fetch method
fetch method
dark_mode
light_mode
fetch
method
Future
<
List
<
(
A
,
B
)
>
>
fetch
(
)
Query the database for rows in this
Query
as a
List
.
Implementation
Future<List<(A, B)>> fetch() => _query.fetch();
typed_sql package
documentation
typed_sql
OrderedQueryRange2<A, B>
fetch method
OrderedQueryRange2 extension on
OrderedQueryRange
<
(
Expr
<
A
>
,
Expr
<
B
>
)
>