$$ComponentSuggestsTableTableManager constructor

$$ComponentSuggestsTableTableManager(
  1. _$CatalogDatabase db,
  2. $ComponentSuggestsTable table
)

Implementation

$$ComponentSuggestsTableTableManager(
  _$CatalogDatabase db,
  $ComponentSuggestsTable table,
) : super(
      TableManagerState(
        db: db,
        table: table,
        createFilteringComposer: () =>
            $$ComponentSuggestsTableFilterComposer($db: db, $table: table),
        createOrderingComposer: () =>
            $$ComponentSuggestsTableOrderingComposer($db: db, $table: table),
        createComputedFieldComposer: () =>
            $$ComponentSuggestsTableAnnotationComposer(
              $db: db,
              $table: table,
            ),
        updateCompanionCallback:
            ({
              Value<String> componentId = const Value.absent(),
              Value<String> suggestedId = const Value.absent(),
              Value<int> rowid = const Value.absent(),
            }) => ComponentSuggestsCompanion(
              componentId: componentId,
              suggestedId: suggestedId,
              rowid: rowid,
            ),
        createCompanionCallback:
            ({
              required String componentId,
              required String suggestedId,
              Value<int> rowid = const Value.absent(),
            }) => ComponentSuggestsCompanion.insert(
              componentId: componentId,
              suggestedId: suggestedId,
              rowid: rowid,
            ),
        withReferenceMapper: (p0) => p0
            .map((e) => (e.readTable(table), BaseReferences(db, table, e)))
            .toList(),
        prefetchHooksCallback: null,
      ),
    );