user1168608
user1168608

Reputation: 618

How to identify an entity in ER diagram

I have a usecase which describes like : "Candidates register their details like personal, academics, skill set and experience."

I have selected Candidate as an entiry , so does registration form become an entity ? , or all those details would be attributes for Candidate entry?

Upvotes: 1

Views: 165

Answers (1)

srini.venigalla
srini.venigalla

Reputation: 5145

No, You would have an Entity called RegistraionEvent, which will have the Registration details such as Date, and Status of Registration. If the Candidate can have more than one Registration, then you would have another entity called Candidate_registration in Physical model. In Logical model, it would just show up as a many-to-many relationship.

Upvotes: 1

Related Questions