I would like to know the benefits of using .NET ORM tools like Entity Framework, LinqToSql over stored procedure approach for scalable website.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are many benefits to using ORM Tools, but they are not a replacement for Stored Procedures.
ORM Tools are a replacement for the manual process of defining and writing data and/or business classes. It saves the developers time and effort by letting them worry about what data to get instead of how to get the data (amongst other things).
Additionally, stored procedures are usable (and sometimes recommended) alongside ORM Tools.