$$WindowRectanglesTableTableManager constructor
Implementation
$$WindowRectanglesTableTableManager(
_$CommonDatabase db, $WindowRectanglesTable table)
: super(TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$WindowRectanglesTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$WindowRectanglesTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$WindowRectanglesTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback: ({
Value<int> id = const Value.absent(),
Value<double?> width = const Value.absent(),
Value<double?> height = const Value.absent(),
Value<double?> dx = const Value.absent(),
Value<double?> dy = const Value.absent(),
}) =>
WindowRectanglesCompanion(
id: id,
width: width,
height: height,
dx: dx,
dy: dy,
),
createCompanionCallback: ({
Value<int> id = const Value.absent(),
Value<double?> width = const Value.absent(),
Value<double?> height = const Value.absent(),
Value<double?> dx = const Value.absent(),
Value<double?> dy = const Value.absent(),
}) =>
WindowRectanglesCompanion.insert(
id: id,
width: width,
height: height,
dx: dx,
dy: dy,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
));