vote up 2 vote down star
1

I've been reading about how Linq to SQL is dead (link here).

So my question is what should I use instead? I already have a project full of Linq to SQL. What's the best thing to migrate it over to?

flag

29% accept rate
First off who says it's dead? Make sure it a credible source. – Bobby Cannon Jan 19 at 19:15
the word "dead" in my post is a link to the source. sorry it's kinda hard to tell it's a link so i'll update that – danifo Jan 19 at 19:31
Or try this one. reddevnews.com/news/devnews/… – le dorfier Jan 19 at 19:33

8 Answers

vote up 3 vote down

I believe the entity framework is the official replacement. If your project already uses it, I would just leave it as is. From what I understand, its dead in the sense that MS will no longer be extending it. Support for it will probably continue indefinitely.

link|flag
vote up 3 vote down

If you want to stick with the Microsoft stack, I think the Entity Framework in the direction they are recommending.

From the ADO.NET blog: "We’re making significant investments in the Entity Framework such that as of .NET 4.0 the Entity Framework will be our recommended data access solution for LINQ to relational scenarios. 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."

link|flag
vote up 0 vote down

Linq to SQL is not dead.... as always everyone jumped the gun on that.

http://reddevnews.com/blogs/weblog.aspx?blog=3036 ...

link|flag
i skimmed the article and by my definition i think linq to sql is being killed off – danifo Jan 19 at 19:23
vote up 1 vote down

You shouldn't migrate to a different framework unless you have to.

As Linq to SQL is still supported, I wouldn't migrate unless you're actively developing functionality in that area.

However if you do decide to migrate, then the Entity framework is probably a good choice for you.

link|flag
vote up 2 vote down

The is an alternative such as nHibenate http://www.hibernate.org/343.html

link|flag
vote up 2 vote down

I would also strongly suggest Nhibernate with Fluent.

Fluent Nhibernate

link|flag
vote up 2 vote down

Damien Guard has something to say on the future of Linq To SQL on his blog:

LINQ to SQL next steps

Where, amongst other things he states:

Firstly we are going to make sure LINQ to SQL continues to operate as it should. This doesn’t just mean making sure what we had works in .NET 4.0 but also fixing a number of issues that have arisen as people pick it up for more advanced projects and put it into production environments.

and

This isn’t to say LINQ to SQL won’t ever get new features. The communities around LINQ to SQL are a continuous source of ideas and we need to consider how they fit the minimalistic lightweight approach LINQ to SQL is already valued for. Where these suggestions fit with this strategy we will be working hard to get them into the product. Some enhancements like the T4 templates can be released independently but runtime elements need to stick to the .NET Framework schedule.

So, not entirely dead, but in statis maybe?

All that said, I've recently come against some fairly major limitiations in the "minimalistic lightweight approach" of LINQ to SQL especially when using the design surface - for example, if I have a table of blog posts, with an author, and an editor, both of which map back to a users table, LINQ to SQL makes no obvious destinction between these two mappings - so I've been looking at the Entity Framework.

Be warned though - moving to EF is not pain free - there are things that you can do in LINQ to SQL that you can't [yet] do in EF, such as:

var posts  = from p in posts where p.PublishedDate.Year == 2009 select p

EF complains that p.Published.Year isn't allowed, nor is p.Published.ToString("yyyy") or any other type of thing - one work around is to cast things ToList(), but then everything's on the client rather than back in the database.

Or say you want to return details of an Author or Editor from a blog post, you have to set up your query like this:

ObjectQuery<BlogPosts> blogPosts = BlogPostsSet.Include("Author");

Note the string literal in the Include - no compile time checking there.

Also, some methods have different names to do (similar) things: for example Single() and SingleOrDefault() will have to be replaced with First() and FirstOrDefault() - not major but annoying.

link|flag
vote up 0 vote down

If you believe that Linq-to-SQL is really dead (which I doubt), you can either use

  • Microsoft's Entity Framework (which is like a Linq-to-SQL on stereoids) - more powerful, more capable, but also more difficult to learn and more complex
  • Subsonic (especially the v3.0 version with LINQ support), if you want something really simple, really "just works out of the box" with a fairly thin, minimal layer atop your database objects

Just my $0.02

Marc

link|flag

Your Answer

Get an OpenID
or

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