Is there a way to get all related columns from another table without having to use a lookup (or query)? I have a “Roles” table with specific permissions for users, but to use those permissions I’m forced to set a relation (that part is fine) but then I have to create a lookup for every single column in the Roles table where all the permissions are set, and those are dozens. Whenever I have to make changes on Roles table I have to edit or add the corresponding lookup column on the users table. It’s very time consuming, there must be a better way to do this. Maybe I’m forgetting something… Any suggestions.
I want to set permission using a separate Roles table, so it can be also editable and my users can create new Roles in the future. I don’t want them to set permission at the user level.
Thank you for your suggestions or points of view.