Magento 2 – Is it bad practice to directly use SQL in php?
We are using a third party module. They have their own database tables and read out data from it by using direct SQL statements app/code/Company/Foo/Model/Calculator.php … public function load_fugenMoertel($fugenMoertel) { $fugenMoertelTable = $this->_resource->getTableName( ‘px_fugenmasse’ ); $binds = array( ‘moertel’ =>… Read More »Magento 2 – Is it bad practice to directly use SQL in php?