Orada getSelect()->__toString();
koleksiyonun baskı sorgu için Magento 1 mevcuttur. aşağıdaki örnek gibi
$products = Mage::getModel(‘catalog/product’)
->addAttributeToFilter(‘status’, array(‘eq’ => 1));
echo $products->getSelect()->__toString();
Magento 2'de herhangi bir yöntem var mı? Bunu buldum ->printLogQuery(true);
ama benim için çalışmıyor.
Güncelleme: kod aşağıdadır. En çok satan ürünleri almaya çalışıyorum. mükemmel iş ama hata ayıklama için sorgu yazdırmak istiyorum.
$this->_collection->getSelect()
->joinLeft(
'sales_order_item',
'e.entity_id = sales_order_item.product_id',
array('qty_ordered'=>'SUM(sales_order_item.qty_ordered)'))
->group('e.entity_id')
->order('qty_ordered '.$this->getCurrentDirectionReverse());
printLogQuery
ile