Asynchronous call of a SQL Server stored procedure in C#

后端 未结 3 949
感动是毒
感动是毒 2020-12-10 03:42

Is it possible to call a SQL Server stored procedure asynchronously via C#?

I have a stored procedure which writes a backup of a specific database

3条回答
  •  一个人的身影
    2020-12-10 04:14

    I would have done it in a separate thread anyway, so I would probably go for the BackgroundWorker approach.

提交回复
热议问题