You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have a table with id different from usual "id", let's say i call the field table_id
well, it's not compatible with the bundle because in file CoopTilleuls\Bundle\AclSonataAdminExtensionBundle\Admin\AclAdminExtension line 99 you wrote :
->andWhere('o.id IN (:ids)')
it triggers a Doctrine Exception since my table with alias "o" has no field called id
fixed it temporary with
->andWhere('o IN (:ids)')
works fine :)
hope i'll get a proper fix next update
The text was updated successfully, but these errors were encountered:
i have a table with id different from usual "id", let's say i call the field table_id
well, it's not compatible with the bundle because in file CoopTilleuls\Bundle\AclSonataAdminExtensionBundle\Admin\AclAdminExtension line 99 you wrote :
->andWhere('o.id IN (:ids)')
it triggers a Doctrine Exception since my table with alias "o" has no field called id
fixed it temporary with
->andWhere('o IN (:ids)')
works fine :)
hope i'll get a proper fix next update
The text was updated successfully, but these errors were encountered: