I need to implement solution with 1 base class and 3 sub-classes (4 classes)
Base class: User
Sub-classes: Client, OfficeUser, Employee

In my database I have only 3 tables : Users, Clients and Employees.
I don't have OfficeUsers table since all data that I need is already in Users table.
In the future I want to be able to create report lisitng number of Clients, Employees and OfficeUsers.

I don't want to use TPH since I have lots of non-nullable fields in Clients and Employees table.
Should I create OfficeUsers table with only UserId so I can implement TPT?
It looks for me as not very good design - having table with only PK so I can map it properly - please correct me if this is the way to do it.

Another option was to have UserType colum within Users table and use it as discriminator but will it work with TPT? Is it possible to create TPT with 1 missing table and use discriminators, looks like mixing TPT and TPH which I think is not possible.

Thanks in advance for your answers.

EDIT:

Please also consider this scenario:
I'm introducing new class called MobileUser which also has the same fields as User. In that case I have no way of knowing how many MobileUsers and how many OfficeUsers is the system without introducing new column for user type.
Is having in this scenario 2 empty tables (only PK) is better/worse than creating dependency in my queries on number of tables and additionally preventing me from using some LINQ queries (please see my comments under Ladislav Mrnka answer )

EDIT 2:

There is a chance that I'll have to add fields to OfficeUser in the future so I'm starting to think that empty table can somehow be an option, at least C# code (queries) would look cleaner. Let me know if you have better approach.

link|improve this question

25% accept rate
feedback

1 Answer

If your OfficeUser is exactly same like User then you don't need any additional class. Use User instead of OfficeUser and derived classes for Employee and Client

link|improve this answer
@ladislav-mrnka I was thinking about that but then I won't be able to use queries like where user is OfficeUser or from ou in entities.Users.OfType<OfficeUser>(). To find out number of OfficeUsers I will have to get all users where user is NOT Client or Employee – Lucas May 25 '11 at 10:48
Yes that is true. You will have to use Where(x => !(x is Employee)) – Ladislav Mrnka May 25 '11 at 10:51
@ladislav-mrnka Yup, and when I introduce new table such as MobileUser I'll have to modify queries to make sure it includes another table (in this case 3 "is not" statements in where clause). Do you think this solution is better than creating empty table for OfficeUser ? – Lucas May 25 '11 at 10:55
No it is not better solution but adding empty table doesn't seem like solution as well. I will think about that. – Ladislav Mrnka May 25 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

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