Вы всегда можете написать свой собственный sql (который вряд ли когда-либо понадобится) с Doctrine.
https://ourcodeworld.com/articles/read/245/how-to-execute-plain-sql-using-doctrine-in-symfony-3
Однако
$this->getContainer()
недоступен в командах,Я бы порекомендовал использовать автоматическую разводку.
/**
* Command constructor.
*
* @param EntityManagerInterface $entityManager to access Doctrine
*
* @return void
*/
public function __construct(
EntityManagerInterface $entityManager
) : void {
$this->_entityManager = $entityManager;
parent::__construct();
}
Кроме того, Doctrine действительно мощная программа, поэтому решение вашей проблемы может быть готово.