开发者

Benefits of using .NET ORM tools like Entity Framework, LinqToSql over stored procedure

I would like to know the benefits of using .NET ORM tools like 开发者_开发问答Entity Framework, LinqToSql over stored procedure approach for scalable website.


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.


ORM tool is not a replacement of stored procedure. It reduce your task to write class that mapped with database and realationship among those class. It also check the validatoin on data you dont need to do manual stuff for this. Stored procedure can also be used with ORM tool alongside.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜