Ahmed Elsayed

Results 34 issues of 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...

enhancement

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...

bug
generator
area-manager

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...

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...

docs