getAttributesRawData() public method

Load attribute data for a list of entity ids.
public getAttributesRawData ( integer $storeId, array $entityIds, string $tableName, array $attributeIds ) : array
$storeId integer Store id.
$entityIds array Entity ids.
$tableName string Attribute table.
$attributeIds array Attribute ids to get loaded.
return array
 /**
  * Load attribute data from the database.
  *
  * @param integer $storeId      Store id.
  * @param array   $entityIds    Entity ids.
  * @param string  $tableName    Attribute table name.
  * @param array   $attributeIds Loaded attribute ids.
  *
  * @return array
  */
 protected function loadAttributesRawData($storeId, array $entityIds, $tableName, array $attributeIds)
 {
     return $this->resourceModel->getAttributesRawData($storeId, $entityIds, $tableName, $attributeIds);
 }