Hello,
Is it correct i dont get the itemList property if i use this line of code?
So actually in general, the getEntityById doesnt return related entities?
Once I ask for itemList it returns me null
Is it correct i dont get the itemList property if i use this line of code?
So actually in general, the getEntityById doesnt return related entities?
Code:
$salesOrder = $this->entityManager->getEntityById('SalesOrder', $salesOrderId);
Code:
$salesOrderItemList = $salesOrder->get('itemList');
Comment