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.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The answer is no. EF 4.1 consists of two features:

  • DbContext API
  • Code first support

Code first support doesn't use designer at all - mapping is done completely in the code and it reflect functionality provided by designer. DbContext API is a new fancy way to work with EF. It is somehow simplified so the usage is better but in the same time some functionality from original ObjectContext API is missing.

What will interests you the most is the fact that DbContext API is just wrapper around ObjectContext API. Nothing more. There are absolutely no changes in core EF functionality because main System.Data.Entity.dll assembly has not changed. You still need this assembly when working with EF 4.1 + you need new EntityFramework.dll assembly with mentioned new features. That means:

  • Designer is still the same. The only new feature is DbContext Generator T4 template
  • Generated SQL is exactly the same
link|improve this answer
Thanks for the reponse. This is interesting, but also disappointing of course. Do you know if there are any plans to fix the SQL generation for TPT/TPCT at least? – Noldorin May 29 '11 at 23:24
1  
The last article discussing these problems is from August 2010: blogs.msdn.com/b/adonet/archive/2010/08/17/… If you check comments you will see that people were not satisfied with presented "improvements" so I believe that there will be some changes in the next major version but no changes have been presented yet. – Ladislav Mrnka May 29 '11 at 23:32
Thanks Ladislav. This answers my queries pretty complete. :-) – Noldorin May 30 '11 at 0:07
feedback

Your Answer

 
or
required, but never shown

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