I have 2 entities (A and B) with a Many to One relationship between them.
I create my form with the A entity and i use an entity field (dropdown list) to display the rows in the B entity. I use a query builder to filter them. If don't change the values in the list (ie. with ajax), everything is working fine.
But if I change dynamicly the values in the dropdown, when I submit the form I have this error "This value is invalid"
It's because the submitted value isn't included in the "array" returned by the query builder.
It seems that this validation is automatic in symfony for entity field (I don't use any asserts on this field). I'd like to get rid of this. But how ?