I last tried out the Entity Framework when it was at version 4.0. My experiments with it, confirmed by some posts on the MSDN forums and elsewhere, indicated that the TPT (table-per-type) and TPCT (table-per-concrete-type) models for database to OOP mapping was very poorly supported, and indeed incomplete. Worst of all, the SQL generated for TPT/TPCT queries was complete spaghetti and highly inefficient, to the extent that for any realistic type hierarchy, it was unusable.
My question is, has any of this change in the EF 4.1 update? Specifically:
Is there now proper designer support for the TPT and TPCT approaches?
Is the SQL generated for TPT/TPCT queries/updates now reasonably efficient?
Any other information on the subject of these models.