portalApplicationCategoriesRefs property

$$PortalApplicationCategoriesTableProcessedTableManager get portalApplicationCategoriesRefs

Implementation

$$PortalApplicationCategoriesTableProcessedTableManager
get portalApplicationCategoriesRefs {
  final manager = $$PortalApplicationCategoriesTableTableManager(
    $_db,
    $_db.portalApplicationCategories,
  ).filter((f) => f.user.id.sqlEquals($_itemColumn<int>('id')!));

  final cache = $_typedResult.readTableOrNull(
    _portalApplicationCategoriesRefsTable($_db),
  );
  return ProcessedTableManager(
    manager.$state.copyWith(prefetchedData: cache),
  );
}