Symfony 从 EAV 模型中检索唯一值

Symfony retrieve Unique values from EAV model

我正在尝试制作产品过滤器,但无法生成正确的查询

А 快速浏览基地 db visually

这是我的实体:

属性类型:

/**
 * @ORM\Id()
 * @ORM\GeneratedValue()
 * @ORM\Column(type="integer")
 */
private $id;

/**
 * @ORM\Column(type="string", length=100, nullable=true)
 */
private $name;

/**
 * @ORM\OneToMany(targetEntity=AttributeValue::class, mappedBy="attributeType")
 */
private $attributeValue;

public function __construct()
{
    $this->attributeValue = new ArrayCollection();
}

属性值:

/**
 * @ORM\Id()
 * @ORM\GeneratedValue()
 * @ORM\Column(type="integer")
 */
private $id;

/**
 * @ORM\ManyToOne(targetEntity=Product::class, inversedBy="attributeValues")
 */
private $product;

/**
 * @ORM\Column(type="string", length=100)
 */
private $value;

/**
 * @ORM\ManyToOne(targetEntity=AttributeType::class, inversedBy="attributeValue")
 */
private $attributeType;

例如 AttributeType(Color) 具有 AttributeValue(Red, Blue, Green) & 我为单个 Color 选项检索了数百个红色、蓝色、绿色 AttributeValue

该查询 returns 选项的所有值(不唯一):

        return $this->createQueryBuilder('at')
        ->innerJoin('at.attributeValue', 'attribute_value')
        ->addSelect('attribute_value')
        ->getQuery()
        ->getResult();

我试过这样修改请求:

        return $this->createQueryBuilder('at')
    ->innerJoin('at.attributeValue', 'attribute_value')
    ->addSelect('attribute_value.value')->distinct()
    ->getQuery()
    ->getResult();

(还有其他尝试,但都差得远)

如何获得每个选项的唯一值?

如有任何帮助,我将不胜感激

感谢您的宝贵时间。

我得到每个选项的唯一值

    public function findOptionsWithUniqueValue()
{
    $result = $this->getEntityManager()->createQueryBuilder()
        ->addSelect('attribute_type.name, attribute_value.value')
        ->distinct()
        ->from(AttributeType::class,'attribute_type')
        ->from(AttributeValue::class, 'attribute_value')
        ->andWhere('attribute_type.id = attribute_value.attributeType')
        ->getQuery()
        ->getResult()
        ;

    $out = [];
    while( $a = array_shift($result)) {
        $out[$a['name']][] = $a['value'];
    }

    return $out;
}