I have entity class Page
with column type=integer
. When I do:
I don't have enough reputation to add a comment to the previous answer, but it is missing the following information:
You also need to define a unique $baseRouteName value in addition to $baseRoutePattern in your admin classes:
protected $baseRouteName = 'admin_vendor_bundlename_adminclassname';
protected $baseRoutePattern = 'unique-route-pattern';
You only need to do this to one class, but consider doing it in both to keep it clear what's going on.