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
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