Wie kann ich product children nehmen?

Hallo,

wie kann ich products children nehmen? Ich habe in meine Definition:

            new ManyToOneAssociationField(
                'products',
                'product_id',
                ProductDefinition::class,
                'id',
                true
            ),

Aber children in ProductEntity ist null.

 childCount stimmt - 8.

Danke :slight_smile:

Ich weiss schon. Man kann es per Criteria nehmen:

$criteria->addAssociation('products.children');