Is LINQ to SQL DOA? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T23:00:18Z http://stackoverflow.com/feeds/question/252683 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252683/is-linq-to-sql-doa 49 Is LINQ to SQL DOA? rp 2008-10-31T05:33:51Z 2009-08-22T23:04:18Z <p>Just when I make friends with LINQ to SQL, it appears as though MS is pulling the rug out from under it. </p> <p><a href="http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx" rel="nofollow">http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx</a></p> <p>From my little bit of research, EF is way overkill for simple work. But after this announcement is there a point in continuing to use LINQ to SQL? </p> <p>Beyond the future for LINQ to SQL, doesn't this just generally send a bad signal? Given the speed with which MS is throwing bits against the wall, is it rational to use any of the new bits early? (and that's being kind, it's hardly early for LINQ to SQL!).</p> <p>For my LINQ to SQL work, I think I'm headed to SubSonic! </p> <p>UPDATE: A couple of new opinions...</p> <p><a href="http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx</a></p> <p><a href="http://codebetter.com/blogs/david.hayden/archive/2008/10/31/linq-to-sql-is-dead-read-between-the-lines.aspx" rel="nofollow">http://codebetter.com/blogs/david.hayden/archive/2008/10/31/linq-to-sql-is-dead-read-between-the-lines.aspx</a></p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/252692#252692 16 Answer by Bevan for Is LINQ to SQL DOA? Bevan 2008-10-31T05:41:43Z 2008-10-31T05:41:43Z <p>There's an ambiguity to your question that needs to be resolved. </p> <p>LINQ != LINQ to SQL</p> <p>There are a whole bunch of LINQ technologies and providers:</p> <ul> <li>Linq to SQL;</li> <li>Linq to Entities;</li> <li>Linq to Objects;</li> <li>Linq to XML;</li> </ul> <p>... and those are just the ones from Microsoft. There are non-MS providers too, including NHibernate.</p> <p>The blog post you linked talks only about Linq to SQL.</p> <p>The key advantage to LINQ is that you can learn and use one query syntax and reuse it across multiple technologies.</p> <p>Given this, I'd suggest that any perceived lack of a future for "Linq To SQL" is irrelevant, as skills you gain in writing LINQ Queries will be transferrable to other tools in the future.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/252726#252726 5 Answer by Jon Limjap for Is LINQ to SQL DOA? Jon Limjap 2008-10-31T06:10:13Z 2008-10-31T07:56:25Z <p>Granted, I think that the choice between LINQ to SQL, LINQ to Entities and LINQ to [insert 3rd Party ORM] here provides a perfectly healthy eco-system of data access layer methodologies that a software developer can choose from. Third party providers like NHibernate, LLBLGen and even Subsonic (not sure if they're going to offer LINQ providers) will definitely make the competition better and more interesting.</p> <p>That being said, it will be totally sad for Microsoft to abandon LINQ to SQL, especially since it does have a good following -- even StackOverflow is built on it.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/252842#252842 0 Answer by Grauenwolf for Is LINQ to SQL DOA? Grauenwolf 2008-10-31T07:59:50Z 2008-10-31T07:59:50Z <p>I don't know, but I'm trying to contact the PM to find out.</p> <p>Honestly I think all they need to do is throw us a bone. Just one or two features for the next release that say "We aren't abandoning you." </p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253278#253278 42 Answer by KristoferA for Is LINQ to SQL DOA? KristoferA 2008-10-31T12:07:39Z 2008-12-17T04:08:33Z <p>1) They can't "kill" Linq-to-SQL as it is already part of the .net framework. What they can do is stop adding features to it. That doesn't prevent the thousands of developers out there that are already using L2S from extending it and improving it. Some core areas are tricky to touch but they're solid already and the <a href="http://www.huagati.com/dbmltools/" rel="nofollow">missing designer features can easily be bolted on</a>.</p> <p>2) One of the <a href="http://channel9.msdn.com/pdc2008/TL20/" rel="nofollow">PDC EF sessions</a> show that they have learnt a couple of lessons from the EFv1 fiasco and they are now copy-and-pasting a lot of the goodies from L2S into EF and pretending it is new EF stuff. In other words, L2S version two has just been "relabelled" EF.</p> <p>3) LINQ as such (Language Integrated Query) is the best thing since sliced ice-cream and it can be used with a lot of other things than L2S (Linq to objects, Linq to entities, Linq to XML, Linq-to-anything). So the DP group's attempt to force [the vast masses of] L2S adopters over to [the less popular and currently flawed] Entity Framework is no reason to not learn Linq.</p> <p>Also see this thread (which is what I believe partly triggered Tim's blog post): <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4061922&amp;SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4061922&amp;SiteID=1</a></p> <p><strong>Update 1:</strong> The Dec 2008 issue of Visual Studio Magazine cover story by Roger Jennings is a good read on the topic, with some L2S vs EF comparisons: <a href="http://visualstudiomagazine.com/features/article.aspx?editorialsid=2583" rel="nofollow">http://visualstudiomagazine.com/features/article.aspx?editorialsid=2583</a></p> <p><strong>Update 2:</strong> Anders Hejlsberg was quoted in <a href="http://reddevnews.com/blogs/weblog.aspx?blog=3016" rel="nofollow">Redmond Developer News</a> as saying "<em>LINQ to SQL is not dead. I can assure you, it is not dead. Nothing ever goes away. We have never done that and we never will.</em>"</p> <p><a href="http://reddevnews.com/blogs/weblog.aspx?blog=3016" rel="nofollow">http://reddevnews.com/blogs/weblog.aspx?blog=3016</a></p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253279#253279 -6 Answer by StingyJack for Is LINQ to SQL DOA? StingyJack 2008-10-31T12:07:49Z 2008-10-31T12:07:49Z <p>Thats not what they said. Linq to SQL uses the entity framework. They are saying that they reccommend that you use Linq + Entity and not the standard SqlConnection, SqlDataAdapter, SqlDataReader, etc. classes.</p> <p>From a usage standpoint, whats is really the difference in using Linq to any of the providers?</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253285#253285 1 Answer by Craig for Is LINQ to SQL DOA? Craig 2008-10-31T12:08:25Z 2008-10-31T12:08:25Z <p>It was always a bit weird that with Linq 2 Sql and Entity Framework there was large areas of overlap. I think the only reason L2S only ever made it into the .NET 3.5 release was because there was a large doubt that EF would ever see the light of day. Now that EF1 is out, all be it a very rough v1, there was no need for L2S anymore.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253292#253292 2 Answer by korro for Is LINQ to SQL DOA? korro 2008-10-31T12:12:21Z 2008-10-31T12:12:21Z <p>Maybe you should not bother learning Linq to SQL, but there's still the Entities Linq that they will keep.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253341#253341 2 Answer by Anders for Is LINQ to SQL DOA? Anders 2008-10-31T12:35:36Z 2008-10-31T12:35:36Z <p>See also <a href="http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx</a> and the the comments there</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253424#253424 6 Answer by Jason Short for Is LINQ to SQL DOA? Jason Short 2008-10-31T13:19:23Z 2009-08-13T22:26:10Z <p><a href="http://stackoverflow.com/questions/253179/best-primary-key-data-type-for-linq-to-sql">Interesting blog post about it.</a> And some related information on <a href="http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx" rel="nofollow">Stackoverflow posts</a>.</p> <p>The basic gist appears to be comments made on the <a href="http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx" rel="nofollow">ado.net blog</a> that state the Entity Framework is the only thing getting major developer time for Visual Studio 2010 and Dot Net 4.</p> <p>My response is - DUH. We have all known this. Microsoft said publicly back at the PDC 2007 that LINQ to SQL was a short term release for SQL Server because there was no other LINQ story to SQL Server. It only works with SQL Server. You cannot write a LINQ to SQL provider - there is no model for it. It was a one off technology, not extensible.</p> <p>The Entity Framework is the ONLY way from Microsoft to build a LINQ Provider. The Entity Framework has turned out to be quite contreversial, but I think that is partly due to the fact that LINQ to SQL has a better programmer experience today. Entity Framework will catch and surpass LINQ to SQL because it is the ORM/Mapping tool of the future from Microsoft.</p> <p>EDIT - I just did a slightly more detailed write up about this on <a href="http://www.vistadb.net/blog/post/2008/10/31/Microsoft-killing-LINQ-to-SQL.aspx" rel="nofollow">my blog</a></p> <p>EDIT2 - IQueryable Provider - is NOT the same thing as a LINQ to SQL provider. You can write your own IQueryable Provider for anything you like. You get no designer support or model generation. There is no gui designer model that I know of for tying into LINQ to SQL model generation.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253534#253534 8 Answer by David B for Is LINQ to SQL DOA? David B 2008-10-31T13:50:31Z 2008-10-31T13:50:31Z <p>Not only should you learn Linq (System.Linq.Enumerable and System.Linq.Queryable), you will need to learn the programming language enhancements for your .net language.</p> <p>In C# 3.0 these include:</p> <ul> <li>Extension methods (static methods with the this keyword on first parameter)</li> <li>Compiler inferred types (var)</li> <li>Lambda syntax (which generates an anonymous method or a Expression depending on context)</li> <li>Initializers</li> <li>Property default implementation (a shorthand)</li> </ul> <p>Read more <a href="http://msdn.microsoft.com/en-us/library/ms364047(VS.80).aspx" rel="nofollow">here</a>.</p> <p><hr /></p> <p>In VB 9.0 there's some inline XML magic, and many other things (many are similar to the above list for C#).</p> <p>Read more <a href="http://msdn.microsoft.com/en-us/library/ms364068.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253548#253548 1 Answer by Tor Haugen for Is LINQ to SQL DOA? Tor Haugen 2008-10-31T13:53:38Z 2008-10-31T13:53:38Z <p>(no, StingyJack, LINQ to SQL does not use the entity framework)</p> <p>Anyway, I wouldn't worry. Tim states that they are listening to customers regarding LINQ to SQL. Judging from the enthusiasm I've seen for L2S, the customers (that's us) will speak their minds.</p> <p>And, as KristoferA points out, they can't actually 'kill' L2S, only freeze it. And L2S, once polished, doesn't really require much further development. With the L2S provider in place, any advances in LINQ should be available in L2S as well. So the choice will still be ours.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253936#253936 1 Answer by Matt Brooks for Is LINQ to SQL DOA? Matt Brooks 2008-10-31T15:37:17Z 2008-10-31T15:37:17Z <p>Please can I suggest that your opinions are posted on this thread: <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4061922&amp;SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4061922&amp;SiteID=1</a>. That way at least there is a central visible location that can gether a bit of momentum.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/256203#256203 2 Answer by Joe Rattz for Is LINQ to SQL DOA? Joe Rattz 2008-11-01T22:33:55Z 2008-11-01T22:33:55Z <p>Scott Guthrie told me they would not kill LINQ to SQL:</p> <p><a href="http://www.linqdev.com/PublicPortal/publicportal/blog.aspx?EntryID=36" rel="nofollow">Post at LINQDev.com</a></p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/260388#260388 1 Answer by Gabriel Isenberg for Is LINQ to SQL DOA? Gabriel Isenberg 2008-11-04T00:01:54Z 2008-11-04T00:01:54Z <p>I guess I don't really see the problem here. From the article you've linked:</p> <blockquote> <p>We are listening to customers regarding LINQ to SQL and will continue to evolve the product based on feedback we receive from the community as well.</p> </blockquote> <p>Am I missing something? What gives the impression of LINQ to SQL being dead on arrival?</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/352565#352565 5 Answer by Sam for Is LINQ to SQL DOA? Sam 2008-12-09T12:21:23Z 2008-12-09T12:21:23Z <p>I honestly do not understand where in that article you read that link2sql is dead.</p> <p>In the blog post you linked to it says:</p> <p><strong><em>We are listening to customers regarding LINQ to SQL and will continue to evolve the product based on feedback we receive from the community as well.</em></strong></p> <p>For me this reads like LINQ to SQL will be developed and supported in future. I wonder why you think it is dead?</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/447142#447142 0 Answer by TT for Is LINQ to SQL DOA? TT 2009-01-15T15:21:48Z 2009-04-07T15:42:30Z <p>Its obvious that 2 ORMs is one to many in Microsoft's toolbox, but to me it seems to be the wrong framework has been chosen for all the wrong reasons. The fact that the C# team did the job that the ADO.NET team was supposed to do in lot shorter time and did the job way better is tough to swallow for the ado.net team. Not that I know the internal workings of the 2 frameworks but I think it would be a lot faster to upgrade the shortcomings linq2sql has to the entity framework. </p> <p>There seem to be too much politics involved and I think this is really going to hurt the asp.net reputation, since I have no trust in that Entity framework will give us a equally user friendly experience as Linq2sql. The ado.net team could also learn some communication skills from the asp.net mvc team as the clarifications on the problem is at best vague.</p> <p>It would be fun learning what Scott Gu and his MVC team stands here as most of their examples are using Linq2Sql.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/1317264#1317264 0 Answer by Scott Barnes for Is LINQ to SQL DOA? Scott Barnes 2009-08-22T23:04:18Z 2009-08-22T23:04:18Z <p>We are not killing LINQ to SQL. We are optimizing for EF, but LINQ to SQL is definitely not being killed off :)</p> <p>- Scott / Microsoft.</p>