Linq over Stored Procedures

后端 未结 9 568
长情又很酷
长情又很酷 2021-01-05 11:19

What are some pros and cons of using linq over stored procedures?

9条回答
  •  南方客
    南方客 (楼主)
    2021-01-05 12:05

    I assume you mean LINQ to SQL as LINQ and stored procedures are two very different things.

    One of the main reasons to use any ORM is to increase the speed of developement. Whenever you have a component that will create queries for you that is one less thing you have to write yourself.

提交回复
热议问题