Stored Procedures - End of days

前端 未结 20 1419
轻奢々
轻奢々 2021-01-31 08:51

I’m listening to the Hanselminutes Podcast; \"StackOverflow uses ASP.NET MVC - Jeff Atwood and his technical team\". During the course of the Podcast they are speaking about SQL

20条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-31 09:29

    Bah!

    ORM, SPs, View, Magic Wands, or whatever.

    Each "tool" has its place in your belt, use the tools you have wisely.

    The only thing that has "changed" ( really improved ) is that some ORMs have nice caching tools already baked in and MySql and Sql 2005+ can handle dynamic or ad hoc query/execution plan caching.

    The potential performance loss from throwing the all sorts of dynamic sql at your db server has been somewhat mitigated. Its just easier to go without stored procedures now. Stored Procs aren't going anywhere.

提交回复
热议问题