Ahmed Elsayed
Ahmed Elsayed
If we try to build the generated code for the following tables: ```dart class AnotherTable extends Table { IntColumn get id => integer().autoIncrement()(); } @UseRowClass(Item, generateInsertable: true) class Items extends...
Related to #3335 Simply, try running the following sample: ```dart import 'package:drift/drift.dart'; import 'package:drift/native.dart'; part 'main.g.dart'; class AnotherTable extends Table { IntColumn get id => integer().autoIncrement()(); } @UseRowClass(Item) class Items...
Multiple tables updates in a transaction sometimes have out of sync responses in the `watch` streams
If we update multiple tables in a transaction and we're listening to both tables updates, sometimes they don't emit the updates synchronously in the same frame. This would cause issues...
Document whether using `computedField` on a reference column will join the referenced table or not
At [referencing-other-tables](https://drift.simonbinder.eu/dart_api/manager/?h=#referencing-other-tables) section, it has a note for `Filter on foreign keys`: "when filtering on a reference column, drift will apply the filter to the column itself instead of joining...