Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: implements Pinq\Queries\ISegment
Example #1
0
 public function visitJoin(Segments\Join $query)
 {
     $this->traversable = self::evaluateJoinOptions($this->traversable, $query->getOptions(), $this->resolvedParameters)->to($this->resolvedParameters[$query->getJoiningFunction()->getCallableId()]);
 }
Example #2
0
 public function visitJoin(Segments\Join $segment)
 {
     return $segment->update($segment->getOptions()->updateSource($this->processSource($segment->getOptions()->getSource())), $segment->getJoiningFunction());
 }
Example #3
0
 public function visitJoin(Segments\Join $segment)
 {
     return parent::visitJoin($segment->update($this->updateJoinOptions($segment->getOptions()), $this->expressionProcessor->processFunction($segment->getJoiningFunction())));
 }
Example #4
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();
 }