Associations by specific attribute

1
Hello, I have multiple entities, seen in image one. Every entity has the same projectIDs. Is it possible to associate the entities only by projectID and create one big table as shown in image two and list multiple employees in the “Name of Employees” column?   So essentially I want to join them all by ProjectID
asked
1 answers
4

Hi Bertran,

Since description_revenue is an association 1 – 1, we can use the attribute revenue (as a decimal type) in the entity description and instead of Description give this entity the name Project.
The employee_project association should have the Project as the owner of the association. So we have reference of the employee in the project entity.

After this changes I think we can use a datagrid 2, to have a list of employees of each project in the last column.

Please let me know if this information was usefull

Example:

answered