vote up 1 vote down star

Comparing the two data models in an asp.net MVC app, which provides better performance, LINQ 2 SQL or LINQ 2 Entities.

They don't always perform the same database operations when you use the same methods, or have the same LINQ methods for that matter....

flag

4 Answers

vote up 2 vote down check

You should benchmark the specific query yourself. However, LINQ to Entities provides an extra abstraction layer in comparison to LINQ to SQL which is likely to impede performance a little.

Performance issues aside, if your application is expected to work with SQL Server backends only and you need a one to one mapping between entities and tables, LINQ to SQL is simpler to use.

link|flag
I agree that LINQ to SQL is simpler to use than LINQ to Entities, but sometimes with simplicity there is a lot of overhead attached (not that I'm saying that is the case here). – hminaya Oct 12 at 20:53
vote up 1 vote down

It depends very specifically on what you're doing. There is no single answer to this.

If you are willing to take the performance hit involved in using an ORM, both of them should be suitable.

My advice would is always go with an ORM for as much code as you can. If you have something that's running unacceptably slowly then make a stored procedure to do that specific query.

link|flag
vote up 1 vote down

This article seems to make some comprehensive comparisons:

http://toomanylayers.blogspot.com/2009/01/entity-framework-and-linq-to-sql.html

My general input though when I hear performance being mentioned is to choose a solution that best solves your problem until you discover that your problem is performance.

link|flag
vote up 1 vote down

Maintainability over performance should be a goal at the outset of most projects even if performance is a requirement. Performance can be tuned later and with good design the ORM/data mapper can usually be swapped out later if it is necessary.

Don't bog yourself down with decisions like this early in a project. Sort with what is easier or what you already know. Then tune later.

Benchmark yourself for good results. Your environment is invariably always different to what the developer/manufacturer might use for comparisons.

link|flag

Your Answer

Get an OpenID
or

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