You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Query('SELECT count(1) num FROM v_todo where deleted = 0 and state = :state')
Future<int?> count(int state);
generated dao class:
@overrideFuture<int?> count(int state) async {
await _queryAdapter.queryNoReturn(
'SELECT count(1) num FROM v_todo where deleted = 0 and state = ?1',
arguments: [state]);
}
why is queryNoReturn, not a number?
The text was updated successfully, but these errors were encountered:
abstract dao class:
generated dao class:
why is queryNoReturn, not a number?
The text was updated successfully, but these errors were encountered: