我从以下文档中知道:
http://docs.doctrine-project.org/en/2.1/reference/dql-doctrine-query-language.html#dql-functions
没有ROUND函数,但是有没有写我自己的DQL类函数的简单方法呢?

编辑:
如果进行平均并返回整数,则不需要精确匹配。

最佳答案

您需要为此实现custom DQL function

DoctrineExtensions中有一些示例。

您可以像下面这样实现它:

<?php

namespace MyApp\DQL;

use Doctrine\ORM\Query\AST\Functions\FunctionNode;
use Doctrine\ORM\Query\Lexer;
use Doctrine\ORM\Query\SqlWalker;

class Round extends FunctionNode
{
    private $arithmeticExpression;

    public function getSql(SqlWalker $sqlWalker)
    {

        return 'ROUND(' . $sqlWalker->walkSimpleArithmeticExpression(
            $this->arithmeticExpression
        ) . ')';
    }

    public function parse(\Doctrine\ORM\Query\Parser $parser)
    {

        $lexer = $parser->getLexer();

        $parser->match(Lexer::T_IDENTIFIER);
        $parser->match(Lexer::T_OPEN_PARENTHESIS);

        $this->arithmeticExpression = $parser->SimpleArithmeticExpression();

        $parser->match(Lexer::T_CLOSE_PARENTHESIS);
    }
}

然后,您可以在引导ORM时在配置中注册它:
$config = new \Doctrine\ORM\Configuration();

$config->addCustomNumericFunction('ROUND', 'MyApp\DQL\Round');

关于mysql - 教义2 DQL MySQL是否等效于ROUND()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15623257/

10-11 05:40