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

public IsIdentifying ( ) : boolean
Результат boolean
Пример #1
0
 private function MapPersistedRelationshipToJoinRow(Relational\PersistedRelationship $Relationship)
 {
     if ($Relationship->IsIdentifying()) {
         throw new RelationException('JoinTableRelation cannot persist identifying relationships');
     }
     return $this->MapRelationshipToJoinRow($Relationship);
 }