up vote 0 down vote favorite
1
share [g+] share [fb]

I have a Domain model:
Employee: Id, FirstName, LastName, Sex, BirthDate.
Office: Employee, WorkStation, OfficeName, etc..
Contacts: Employee, MobilePhone, EMail, etc...

But I`m not sure about my current database structure. How is right: Employees table has a PK EmployeeID, and the Offices and Contacts tables has their own IDs and reference to Employees table, OR Employees table has its EmployeeID and also keeps references to Offices and Contscts by having OfficeID and ContactID?

link|improve this question

As I understand, Employee is an Aggregate in this case? And contact, nor office doesn`t make sense without Employee. – Alkersan Oct 4 '09 at 0:22
feedback

3 Answers

up vote 1 down vote accepted

To be in a reasonable normal form, your employees should refer to the office.

Assuming the relationship of contacts is employees have a set of contacts and no other employee shares those contacts, the proper relationship should be contacts refer to the employee.

Employee: empid, officeid

Office: officeid

Contacts: empid, contactid

link|improve this answer
Oh, by Office I ment the same as Contact information, but with service official information. – Alkersan Oct 4 '09 at 0:19
feedback

If data in Office and Contact table just enhance information about Employee, I would use EmployeeID as primary key and foreign key to Employee. That models 1 to 0..1 relation.

Employee: EmployeeID as primary key

Office and Contacts: EmployeeID as primary key and foreign key to Employee

link|improve this answer
feedback

Your model is not explicit about the relationships between Employees, Offices, and Contacts. Specifically, are these relationships one-to-one, one-to-many, or many-to-many? Once you've catalogued the relationships you want modeled, the foreign key structure of your database will become clear.

link|improve this answer
In my model Employee is the root class, and Office, Contact, etc. are just extensions to Employee, and they cary additional info. So 1 Employee must have 1 office, 1 Contact... Maybe better will be to store all this data in 1 table, becaue Office and Contact can`t live without Employee – Alkersan Oct 4 '09 at 13:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.