Question

How to get product collection by multiple attributes?

Magento 2.0

Était-ce utile?

La solution

You can use

Magento\Catalog\Model\ProductFactory;

to get product collection and filter by multiple attribute like this:

$productCollection = $this->_productFactory->create()->getCollection()->addAttributeToSelect('*')->addFieldToFilter('sku',array('eq' => $styleCode));

Use "Dependency Injection" method to implement this, Please reply if need more clarification,

Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top