vote up 0 vote down star

Possible Duplicates:
Is Linq to SQL dead?
Is LINQ to SQL DOA?

I'm starting a new ASP.NET MVC project and don't know if I should go with Linq to SQL, since it seems that its future is somewhat uncertain. So is this my best option for an ORM and if not, what is? I'm aware of NHibernate and Entity Framework, but they both seem far more cumbersome than Linq to SQL.

flag

1  
Not again. :( stackoverflow.com/questions/870853/… – Robert Harvey Oct 18 at 2:14

closed as exact duplicate by Robert Harvey, Ahmad Mageed, RedWolves, Jason, David B Oct 18 at 2:51

5 Answers

vote up 4 vote down check

The "...future in question..." thing is just fed by those trying to push competing OR mappers, most who are still far behind Linq-to-SQL both in terms of LINQ support and when it comes to generating good and effective SQL queries.

Anders Hejlsberg was quoted by Redmond Developer News saying "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."

Scott Guthrie recently tweeted "LINQ to SQL is fully supported in VS10/.NET 4.0. Here is a list of improvements in it: tinyurl.com/linq2SinDev10"

MSFT have fixed a decent amount of minor L2S bugs in .net 4.0. There are also a number of hotfixes for L2S 3.5 available through MSFT support.

Yes, they have apparently spent a lot more time on EF in .net 4, but that is because EF needs it. L2S works, and it works great already so as long as they fix those kind of minor issues I'm sure it will stay around and remain popular for a long time ahead... ...and I'm sure that EF will be a worthy competitor once EF4 is released but until then I'm sticking to L2S in any code that is about to hit production.

Michael G's reply is great advice; separate your layers and it will be a breeze to switch to another OR mapper in the future if you need or want to...

link|flag
The cheerleading here is pretty overbearing. Some objectivity would be nice to see. You obviously have a personal investment in LinqToSql's success, but that doesn't mean your answer has to be completely one sided. – Michael Maddox Oct 18 at 10:03
Dear Michael, If you have found any incorrect facts in my reply, please be so kind to point them out so that I can correct them... I don't see why I would need to chime in to the NHibernate mafia's one-sided "L2S is dead" chimes. Nor do I see any point in quoting Telerik salesmen when they're trying to pitch their own solution by claiming that "L2S is dead as a door knob" (yes, that is a direct quote). I trust Anders Hejlsberg and Scott Guthrie a lot more than I trust the NHibernate or Telerik sales people... – KristoferA Oct 18 at 10:34
2  
Never... Ever doubt the Gu – Hurricanepkt Oct 18 at 16:04
vote up 4 vote down

It will be around for a while and does a decent job. Use it if you feel it meets your needs.

EDIT - Further thought on it...

Linq to SQL is not receiving as much attention to progressing it's features as is the Entity Framework. MS has made a decision to pursue enriching/developing EF and as for L2S this meant moving / redirecting resources away from it.

However, it is a great tool for many situations. :) SO uses L2S as mentioned already. As the years go on and EF progresses there is a chance that L2S will disappear but I think it will be with us for a while yet. Here's a link that speaks a little towards why L2S is good to consider. http://stackoverflow.com/questions/837590/to-linq-to-sql-or-not-that-is-the-question.

It isn't "dead" as in you won't have it in .Net 4.0 or so. For example, here's a blog entry on the updates L2S is getting in 4.0.

http://damieng.com/blog/2009/06/01/linq-to-sql-changes-in-net-40

link|flag
vote up 2 vote down

I suggest separating your data access layer into it's own assembly; by use of the repository pattern, or a pattern similar. By doing so, you can abstract the implementation of the data access from your controller / services that use your databases. So, in the future you can switch to a different ORM mapping tool, or hard coded SQL calls with little effort if LINQ to SQL doesn't work out for you.

To answer your question directly: if the worry of Linq to SQL becoming obsolete in the future is the only reason holding you back from using it; then it would be a safe bet to say that LINQ To SQL will be around for a while; as it's being release in .NET 4

link|flag
1  
Good General advice. Loosely couple that code. :-) – klabranche Oct 18 at 2:36
+1 - with proper separation of the layers it should be a breeze to switch OR mapper... – KristoferA Oct 18 at 2:47
vote up 3 vote down

If you do not need any of the advanced features of Nhibernate or Entity Framework. Then use linq to sql ... but its in .NET 4 so I can't imagine they will kill it any time soon. (For reference I mention the fact that classic asp is still supported)

link|flag
vote up 3 vote down

Use what you like but StackOverflow uses Linq to SQL, so Jeff and friends must have seen some value in it.

link|flag

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