Scalr\Model\AbstractEntity::_column PHP Method

_column() private method

Gets column name for the specified field
private _column ( string $fieldName, string $tableAlias = null, string $alias = null ) : string
$fieldName string The name of the field in the Entity
$tableAlias string optional The table alias
$alias string optional The column alias
return string Returns the column as (`table` | `table_alias`).`column_name`[ AS `alias`]
    private function _column($fieldName, $tableAlias = null, $alias = null)
    {
        return $this->getIterator()->getField($fieldName)->getColumnName($tableAlias, $alias);
    }