Pinq\Queries\Builders\Interpretations\IScopeInterpretation::interpretWhere PHP Метод

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

public interpretWhere ( $segmentId, Pinq\Queries\Builders\Functions\IFunction $predicate )
$predicate Pinq\Queries\Builders\Functions\IFunction
    public function interpretWhere($segmentId, IFunction $predicate);

Usage Example

Пример #1
0
 protected final function visitWhere(O\MethodCallExpression $expression)
 {
     $this->addSegment(function ($segmentId) use($expression) {
         $this->interpretation->interpretWhere($segmentId, $this->getFunctionAt("{$segmentId}-predicate", 0, $expression));
     });
     $this->visit($expression->getValue());
 }