Doctrine\DBAL\Platforms\SQLServerPlatform::getConcatExpression PHP Method

getConcatExpression() public method

{@inheritDoc}
public getConcatExpression ( )
    public function getConcatExpression()
    {
        $args = func_get_args();
        return '(' . implode(' + ', $args) . ')';
    }
SQLServerPlatform