codewrath
codewrath

Reputation: 51

what are the pros and cons using LINQ to SQL?

performance ? architecture ? the system in question will always be a MS SQL database there is an existing DAL but there will be refactoring done on the system and Linq-to-SQL seems a good candidate to avoid maintaining a DAL or SP's

Upvotes: 1

Views: 2031

Answers (2)

Lee Englestone
Lee Englestone

Reputation: 4667

Try looking at for a discussion on the pros and cons

http://kevine323.blogspot.co.uk/2011/08/linq-to-sql-and-entity-framework-vs.html

-- Lee

Upvotes: 1

kbrimington
kbrimington

Reputation: 25652

For advantages, see the accepted answer on this related question: What are the advantages of LINQ to SQL?.

For disadvantages, you may be interested in the discussion at this related question: linq2sql disadvantages

Upvotes: 1

Related Questions