Storm\Drivers\Base\Relational\Relations\JoinTableRelation::MapPersistedRelationshipToJoinRow PHP Method

MapPersistedRelationshipToJoinRow() private method

private MapPersistedRelationshipToJoinRow ( PersistedRelationship $Relationship )
$Relationship Storm\Core\Relational\PersistedRelationship
    private function MapPersistedRelationshipToJoinRow(Relational\PersistedRelationship $Relationship)
    {
        if ($Relationship->IsIdentifying()) {
            throw new RelationException('JoinTableRelation cannot persist identifying relationships');
        }
        return $this->MapRelationshipToJoinRow($Relationship);
    }