appendJoinOptions() public méthode

public appendJoinOptions ( Options $joinOptions )
$joinOptions Pinq\Queries\Common\Join\Options
Exemple #1
0
 public function visitJoinApply(Operations\JoinApply $operation)
 {
     $this->compilation->append('Join with: ');
     $this->compilation->appendJoinOptions($operation->getOptions());
     $this->compilation->append(' and update the outer values according to: ');
     $this->compilation->appendFunction($operation->getMutatorFunction());
 }
Exemple #2
0
 public function visitJoin(Segments\Join $query)
 {
     $this->compilation->append('Join with: ');
     $this->compilation->appendJoinOptions($query->getOptions());
     $this->compilation->append(' and correlate the values according to: ');
     $this->compilation->appendFunction($query->getJoiningFunction());
     $this->compilation->appendLine();
 }