Simon Binder
Simon Binder
That code looks alright to me. Are you using the result of `_resetDatabase` inside the database constructor of the second instance? I just saw the public `resetDatabase` method from your...
I see what you mean, but at the moment this is not possible. I think it's a valid request, but it won't be easy to implement. Moor also generates additional...
We could have another set of builders generating files like this: - each moor file and every Dart file declaring tables gets - a (`build_to: cache`) `moor.json` file containing entities...
I've been thinking about this this feature for a long time now, and I think it won't be easy to implement without changing some parts of the user-visible API substantially....
Huh, looks like this causes us to sometimes generate a duplicate nullability suffix (`PureDefault copyWith({MyCustomObject?? txt})` in the failing build step).
That is definitely not normal, moor_ffi on iOS shouldn't increase the app size by much (we don't have any external native dependency on iOS). On Android it can add ~3...
I think the latest stable (`v1.12.13+hotfix.5`) uses Dart 2.7 and supports `dart:ffi`. I don't have access to a Mac at the moment, but I'll check the stable and develop channel...
Thanks for the contribution! I'm not sure if this works though. We'd have to change usages from ```dart @UseMoor(tables: [Users]) ``` to ```dart @UseMoor(tables: [Users()]) ``` and convert the type...
> Does it make sense to generate these as assets which are then read from during db creation? Interesting idea! `drift_dev` could optionally emit a prepared sqlite3 database into a...
Can you please be more specific with "I am not getting any result"? Are you getting an empty list? Is the stream not updating as you'd expected? Do you get...