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?
|
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?
|
||||||
|
|
|
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. |
||
|
|
|
|
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." |
||
|
|
|
|
Linq to SQL is not dead.... as always everyone jumped the gun on that. |
||
|
|
|
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. |
||
|
|
|
|
The is an alternative such as nHibenate http://www.hibernate.org/343.html |
||
|
|
|
|
I would also strongly suggest Nhibernate with Fluent. |
||
|
|
|
|
Damien Guard has something to say on the future of Linq To SQL on his blog: Where, amongst other things he states:
and
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:
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:
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. |
||
|
|
|
|
If you believe that Linq-to-SQL is really dead (which I doubt), you can either use
Just my $0.02 Marc |
||
|
|