Storm\Core\Relational\PersistedRelationship::GetRelatedPrimaryKey PHP Метод

GetRelatedPrimaryKey() публичный Метод

public GetRelatedPrimaryKey ( ) : PrimaryKey
Результат PrimaryKey
    public function GetRelatedPrimaryKey()
    {
        if ($this->IsIdentifying) {
            throw new RelationalException('An identifying relationship does not contain a related primary key');
        }
        return $this->RelatedPrimaryKey;
    }