UML class diagram: how to move from a relational diagram diagram to a class diagram

I am designing a workout tracking program. I have the following relational diagram, and I want to create a class diagram with it.

relational chart

In this case, I have to create an associative table as follows:

associativeTable

To explain the relationship: a muscle can target many different exercises, and an exercise can target many muscles.

Is the following representation correct? Can we improve it?

class diagram

If this is not true, can someone suggest a better way to represent it in the class diagram?

+4
source share
1 answer

. List<...> -. . :

enter image description here

. , . , - List<...> .

+3

Source: https://habr.com/ru/post/1628048/


All Articles