I'm using ASP.NET MVC with Entity Framework Code first and am designing a system where it will use the following models (among others)
- UserProfile
- CompanyInformation
- CustomerProfile (entities were left out on the model below for time saving purposes)
- Appointments (entities were left out on the model below for time saving purposes)
The scenario that I want to achieve is that registered users (in the UserProfile table) could be Customers (ofcourse with different credentials and authorizations). each of these clients could have an appointment set within the company. So Now I would like to be able to easily pull up all the appointments that a customer has and at the same time be able to pull up all the appointments of the company (across many clients).
The relationships which I have denoted here doesn't look right to me. Is the way I have it right? I know this is a per application base thing but I kinda don't like the fact that there is a loop there (userProfile has a relationship with company which has a relationship with appointments which has a relationship with customerProdfile which has a relationship back to userProfile) am I wrong?
I am very new to this whole thing and this project was setup so I can learn asp.net mvc, entity framework code first and various other things so any help would be greatly appreciated.
