How to convert the Data object into Magento2 Collection ?
In Mage1 we could do as below..
Mage1:
$collection = new Varien_Data_Collection();
foreach ($items as $item) {
$varienObject = new Varien_Object();
$varienObject->setData($item);
$collection->addItem($varienObject);
}
return $collection;
but how do in Mage2 ??
I know How set the DataObject But problem with Making the collection..