저자: Elliot Levin (elliotlevin@hotmail.com)
상속: extends ProjectionBase
예제 #1
0
 public function interpretJoin($segmentId, IJoinOptionsInterpretation $joinOptionsInterpretation, IFunction $joinToFunction)
 {
     /* @var $joinOptionsInterpretation IJoinOptionsParser */
     $this->segments[] = new Segments\Join($joinOptionsInterpretation->getJoinOptions(), $this->buildFunction($joinToFunction, Functions\ConnectorProjection::factory()));
 }
예제 #2
0
파일: Custom.php 프로젝트: timetoogo/pinq
 public function walk(O\ExpressionWalker $walker)
 {
     return $this->update($this->onFunction->walk($walker));
 }
예제 #3
0
 public function interpretCustomJoinFilter(IFunction $predicate)
 {
     $this->joinFilter = new Join\Filter\Custom($this->buildFunction($predicate, Functions\ConnectorProjection::factory()));
 }
예제 #4
0
파일: Join.php 프로젝트: timetoogo/pinq
 public function getParameters()
 {
     return array_merge($this->options->getParameters(), $this->joiningFunction->getParameterIds());
 }
예제 #5
0
 /**
  * @return callable
  */
 protected function functionFactory()
 {
     return Functions\ConnectorProjection::factory();
 }