up vote 1 down vote favorite
share [g+] share [fb]

Duplicate:

Is LINQ to SQL DOA?

I read somewhere on the 'net that Microsoft is considering moving away from LINQ-To-SQL in its current form as it wasn't very successful.

I want as many opinions on this as possible as I'm new to .NET and want to choose the best possible route for where I work.

link|improve this question
This is a duplicate of stackoverflow.com/questions/252683/is-linq-to-sql-doa – TheTXI Mar 9 '09 at 15:01
i did search for similar questions but didn't notice anything. Thanks for correction on typo duffmo, I do no the difference just not fully concentrating – Andi Mar 9 '09 at 15:04
feedback

7 Answers

up vote 11 down vote accepted

No, not LINQ per se. The "Language Integrated Query" is here to stay.

There's some talk about MS giving up on "Linq-to-SQL" (the SQLServer-only database version of LINQ) in favour of the ADO.NET Entity Framework, but even that's still a bit unclear.

See this post in the MS ADO.NET team blog and these comments here by Oren Eini and David Hayden.

And while I think Linq-To-Sql probably won't receive big updates anymore, I highly doubt it'll be physically removed from the product, so there's always opportunity for third-party developers to step in and make it great nonetheless!

link|improve this answer
The chatter I've heard is that LINQ to SQL will effectively be merged with LINQ to Entities. Jury's out on whether that's a good thing... – Dave Swersky May 16 '09 at 14:54
I heard different things - even in the .NET 4.0 timeframe, there are still bugfixes to Linq-to-SQL being implemented - so I guess it'll stay around for a while, as a separate technology – marc_s May 17 '09 at 8:14
1  
The creators of StackOverflow adopted Linq to SQL as their ORM of choice. Apparently they decided the benefits outweighed the perils. – Robert Harvey Jul 31 '09 at 17:09
feedback

Not exactly "scrapped", but MS is moving on to the next big thing.

Also, don't confuse linq-to-sql with linq-to-objects, lambda expressions, or the IEnumerable extension methods. Those aren't going anywhere.

link|improve this answer
feedback

Heres another SO thread that talks about this. They're not getting rid of LINQ, just Linq-To-SQL I believe.

link|improve this answer
feedback

I think it's extremely unlikely that MS would move away from supporting LINQ. I'm curious where you heard it "wasn't very successful"... by all accounts I've seen LINQ is considered the best addition to .NET since generics.

For that matter, it doesn't "cost" anything to continue to support it regardless of how much it's used. LINQ and its associated technologies (SQL, Entities, XML, etc) are here to stay.

link|improve this answer
will try and find the article that i read, but i thought here would be a good place to ask about it – Andi Mar 9 '09 at 14:59
when the SQL Server changes, it costs to make it work with other tools like linq – KM. May 15 '09 at 21:33
feedback

LINQ is not getting scrapped, but Linq to SQL probably is: It looks like it will be superseded by the Entity Framework.

I assume that that will take some time, though I'd expect that MS will at least provide some migration tools to move from L2S to EF.

link|improve this answer
feedback

Here's an MSDN blog entry pretty much hinting that Microsoft is preferring LINQ to Entities above LINQ to SQL, but no mention of scrapping LINQ altogether.

http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx

link|improve this answer
feedback

LINQ will stay in the .Net-Framework since it's a very powerfull and popular Addition. But Microsoft announced to concentrate into the development of the Entity Framework. This will make the LINQ-TO-SQL-PROVIDER obsolete. But you can use LINQ to query data out of EF-objects, of course.

So I recommend you to take a closer look into the possibilities of LINQ, since it made Dataqueries to all sorts of lists a lot easier and faster (for me).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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