vote up 1 vote down star

i know its a new thing , more powerful and a lot more options added to it, but is linq2sql is part of the new EF ?

if not , what is the main different between the two frameworks?

flag

3 Answers

vote up 4 vote down check

I've written a couple of opinion pieces about LINQ-to-Entities, and its relation to LINQ-to-SQL:

http://www.hackification.com/2008/12/03/linq-to-entities-the-blackberry-storm-of-orms/ http://www.hackification.com/2008/12/04/linq-to-entities-follow-up/

Summary: LINQ-to-SQL isn't the same as LINQ-to-Entities. L2S has a small feature-set, but what it does, it does very well. L2E aims to cover a much wider feature-set, but the current version seems to have some glaring omissions (eg lazy-loading). v2 of L2E should be much better; the current version (IMHO) feels more like a beta.

link|flag
Stu, I applause your well written blog entries! Absolutely on my list of recommended reading for anyone comparing L2S vs L2E... – KristoferA Dec 10 '08 at 3:33
vote up 0 vote down

From what I have read and been told (repeatedly =) ), linq 2 sql is being retired in favor of Linq to EF.

See here http://stackoverflow.com/questions/253263/has-microsoft-really-killed-linq-to-sql and here http://stackoverflow.com/questions/252683/is-linq-to-sql-doa

EF will allow you to use a more generic backing store, and that is better for users of non MSSQL backing stores.

link|flag
Microsoft's DP group wants to turn EF into a replacement as of the next version (which unless I have misinterpreted something will be released as part of .net 4.0 / VS2010). Until then I can't see EF as a replacement for L2S. – KristoferA Dec 10 '08 at 3:17
Also see these two interesting recently published articles: reddevnews.com/blogs/weblog.aspx?blog=2990 stephenforte.net/CommentView,guid,bc1bc043-3cdc-4… – KristoferA Dec 10 '08 at 3:24
vote up 1 vote down

i know its not the same , my question is, is linq to sql part of the EF framework inside the core, does it a Base foundation for EF ?

link|flag
No. They are completely separate. As a result, some of the great things about L2S (good translations from linq expressions into efficient SQL queries, a wide variety of mapping of CLR/BCL functions into T-SQL equivalent etc) is not there in L2E/EF. – KristoferA Dec 10 '08 at 3:12
...*if* L2S had been used as the foundation for EF/L2E then EF would probably had been a good product. Now they're looking into retrofitting L2S-like features into EF in the next version (.net 4.0). Whether they will succeed or not remains to be seen. – KristoferA Dec 10 '08 at 3:39

Your Answer

Get an OpenID
or

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