Simon Binder
Simon Binder
Of course, sorry. The best way is to wrap them in variables: ```dart columns['version'] = Variable(version); columns['sync_status'] = Variable(syncStatus); ```
Can you post the trace of the exception? It sounds like a `.single` somewhere where it's not supposed to be, but that's hard to say without checking the origin.
> Is this function the problem? The problem actually happens during inserts, apologies for posting the broken code. Does it work if you set the type argument on `Variable`? ```dart...
@Abdktefane What error are you getting exactly? If your database class is named `GymZoneDatabase`, your `UserDao` should extend `BaseDao` accordingly.
Alright, now I see the error. You can fix that by looking up the right table in the constructor: ```dart @UseDao(tables: [Users]) class UserDao extends BaseDao with _$UserDaoMixin { UserDao(MyDatabase...
Thanks for opening this issue, I think it could be a helpful addition. How would you envision an api or tooling for this? We can provide a wrapper class similar...
Thanks for the report. However, it's hard to diagnose what's going wrong here without further information. > It's as if the query result is cached. Moor does cache the result...
> FlutterQueryExecutor.inDatabaseFolder Are you really using a `FlutterQueryExecutor`? You don't depend on `moor_flutter`, so I assume you're now using a `VmDatabase`, is that correct? Are you getting any exceptions at...
Sorry for the slow response. I can't reproduce this, so there's not much I can do here. If you show me a small project where moor doesn't work as you...
`isAcceptableOrUnknown` should be available since moor 3.0. To get the resolved version of moor, can you check the `.dart_tool/package_config.json` file? There should be an entry having `"name": "moor"` and a...