Using LLGLGen 2.6.8 with SQL Server 2008 and .NET 3.5.
I am using in heritance with a single base table and many tables derived from the base. There is only one layer of inheritance.
For example:
OrderEntity
OrderAEntity
OrderBEntity
OrderCEntity
etc.
I understand why the LEFT JOINs to the derived tables are generated when fetching an order. However, at any given time (but it can change at runtime) I know that certain derived tables will never have data. So for example I may know than only OrderA entities exist.
Is there any way to tell LLGLgen to pretend as if certain derived tables do not exist and not consider them in the inheritance relationships and field selections?
Thanks,
Brian