Hello,
I have a MANY_MANY relationship of Employees and Projects. I want to generate a table listing Employees by project. If an Employee is on more than one project, he would be listed more than once in the table. The columns of the table are all Employee information (no Project details), so it’s an Employee table, but it’s organized by Project.
Is there a way to do a findAll() of Employees that results in multiple instances of the same Employee in the list. Just like you’d see in the SQL output of a mm relationship being joined?
Thanks,
Greg