What are the tips/techniques when you need to persist classes with inheritance to relational database that doesn't support inheritance?
Say I have this classic example:
Person -> Employee -> Manager
-> Team lead
-> Developer
-> Customer -> PrivilegedCustomer
-> EnterpriseCustomer
What are the available techniques to design the database? Pros and cons of each?
p.s. I have searched and found several question regarding database inheritance but most were about changing to a database engine that supports it natively. But let's say I'm stuck with SQL Server 2005... what are my options?