After 2 months of nothing but L2E, I feel I can give a decent comparison
Most likely you have read more than just a few of these comparisons and are tired of the debate.
I too disliked L2E from the get-go but decided that my opinion was not totally grounded and that I should really understand L2E before I crap on it,
so, I decided to do an entire project at work with it and get down to the nuts and bolts.
Now, 2 months, a lot of frustration and some happy customers later, I can give a fully educated opinion on L2E:
it is not as bad as I originally thought, in fact, it is pretty sweet in some areas, but still not as easy to use as L2S.
If you have read any of my multiple posts on Entities this will mostly be a re-hash of what I have already said. If not, this is a good summary of my findings and hopefully will help you decide.
If you have read any of my multiple posts on Entities this will mostly be a re-hash of what I have already said. If not, this is a good summary of my findings and hopefully will help you decide.
dynamic queries
Winner: TIEThanks to the geniuses that wrote System.Linq.Dynamic.dll the syntax is *mostly* interchangable between the two languages (which I didn't realize when writing this). If I was forced to pick a winner, it would be L2S as there are more choices for syntax than for L2E, but that can also be viewed as a fault.
linq-to-sql -and- linq-to-entities
var results = db.branch .Where("branch_id == @0 || display == @1", new object[] {5, "Hello"});
With L2S, you can do this as well:
var results = db.branch .Where("branch_id == 5 || display == \"Hello\"");
working with databound controls
Winner: Linq-to-SQLThis one is a no-brainer. After being lulled into the fact that L2S just works with so many things, I had to work backwards on problems I found with L2E. One annoyance I noticed was that if I was making an update in a GridView, it would error out unless I explicitly had the primary key in the GridView - and if I wanted it hidden, it was necessary to use css; it is documented here.
Another thing I ran across is the fact that you need to use all the required 'Include' statements in order to get a Repeater/GridView to show child values of relationships with Entities where is L2S, you could simply call the relation without any extra work.
multiple databases
Winner: Linq-to-SQLThe choice is quite simple here, as Linq-to-Entities has no native support for multiple databases.
database relation management
Winner: Linq-to-SQLFirst of all, simple things such as getting foreign key values with linq-to-entities is much more difficult than in L2S; examples (written as short as I could):
linq-to-sql
int s_id = dataContext.records .First(r => r.record_id == 1).state_id;
linq-to-entities
int s_id = Convert.ToInt32( Entities.records.First(r => r.record_id == 1) .stateReference.EntityKey .EntityKeyValues.First().Value );
As for putting those relation values into the DB, the clear winner is L2S as well, just take a look at what it takes to set this object 'r' to have a reference to the 'city' which has a key of the integer value of 5:
linq-to-sql
r.city_id = 5;
linq-to-entities
r.cityReference.EntityKey = new EntityKey( "YourEntitiesNamespace.cities", "city_id", 5);
a few more...
A while back I
went over some other reasons L2E annoyed me
such as DataSource annoyances, relations (again) and the pain of updating your model.
verdict
Linq-to-Entities is fully capable and can do *almost* everything Linq-to-SQL can do, it just takes a bit more code some times; the almost is for multiple database utilization.
L2E is a great ORM, but many of us were spoiled with L2S, so it is now up to Microsoft to live up to the expectations that they put out for us with this framework that they are deprecating.
I hope and assume it will become a superior ORM, but that is in Microsoft's hands now; for the time being, it is not.
Image may be NSFW.
Clik here to view.
Clik here to view.