In a conceptual model seem like each entity always correspond to one table in database. Is it possible to have three tables in database and not the same number of entities in conceptual model?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes; Consider:
Each person can have one or more Names, and each Name can belong to one or more Persons.
Entity Framework can take care of the Many-To-Many table and do:
Additionally, when using Inheritance there is no need for the base table/entity so it gets rolled up into the derived table/entity.