Best Data Access Methods for New Web Application

Posted by user98454 on Stack Overflow See other posts from Stack Overflow or by user98454
Published on 2010-04-23T10:56:51Z Indexed on 2010/04/23 11:03 UTC
Read the original article Hit count: 155

Filed under:
|

I'm building a new web application project and am confused by the numerous methods of performing data access. I'm backending on SQL and a bit confused whether to use LINQ to SQL or trtaditional ADO.net ?

what are the advantages and disadvantages of using LINQ/SQL over ADO.net?

If it is ADO.net,then what is the best way to retrieve data means either calling the stored procedures or directly calling the t-sql code?

My question is what is cleanes and most effiecient and professional way of creating DAL for webapplication in asp.net?

Thanks

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about ADO.NET