I try to instantiate the core repository for frontend user groups of TYPO3 in the following way:
$objectManager = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Object\\ObjectManager');
$feGroupRepo = $objectManager->create('\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\FrontendUserGroupRepository');
var_dump($feGroupRepo->findAll()->toArray());
As result I get the sql error:
#1247602160: Table 'tablename.tx_extbase_domain_model_frontendusergroup' doesn't exist
Why does this repo use the wrong table? And how can I configure it in the correct way to use the system table 'fe_groups'?