$$AccountsTableTableManager constructor

$$AccountsTableTableManager(
  1. _$CommonDatabase db,
  2. $AccountsTable table
)

Implementation

$$AccountsTableTableManager(_$CommonDatabase db, $AccountsTable table)
  : super(
      TableManagerState(
        db: db,
        table: table,
        createFilteringComposer: () =>
            $$AccountsTableFilterComposer($db: db, $table: table),
        createOrderingComposer: () =>
            $$AccountsTableOrderingComposer($db: db, $table: table),
        createComputedFieldComposer: () =>
            $$AccountsTableAnnotationComposer($db: db, $table: table),
        updateCompanionCallback:
            ({
              Value<int> id = const Value.absent(),
              Value<String> userId = const Value.absent(),
            }) => AccountsCompanion(id: id, userId: userId),
        createCompanionCallback:
            ({
              Value<int> id = const Value.absent(),
              required String userId,
            }) => AccountsCompanion.insert(id: id, userId: userId),
        withReferenceMapper: (p0) => p0
            .map((e) => (e.readTable(table), BaseReferences(db, table, e)))
            .toList(),
        prefetchHooksCallback: null,
      ),
    );