I have three entities: Recipe, RecipeIngredient and Ingredient. Each Recipe has many RecipeIngredients. Each RecipeIngredient has one Ingredient. My RecipeAdmin includes a Collection field for editing RecipeIngredients. The collection field contains many forms, each form for one RecipeIngredient. This form contains an entity field for selecting the Ingredient. The problem is that when I have 80 RecipeIngredients on the form, Symfony makes 80 same queries, one for each field.
These queries basically look like:
SELECT (all the fields) FROM recipe_ingredients ORDER BY name
The important thing is that all are the same. I don't think this is normal, how could I optimize so that only one query is required?