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.