我有很多使用 .net 框架在 C# 中内联编写的 SQL 查询。例如
string sMysql = @"
SELECT
[Something]
from Person where person_uid=12"
我希望它将其转换为将用事务 SQL 编写的存储过程。
像这样的东西:
CREATE PROCEDURE [dbo].[aspnet_AnyDataInTables]
@uid int
AS
BEGIN
SELECT
[Something]
from Person where person_uid=@uid
END
我可以手动完成,但我有很多内联查询要转换。有没有办法以编程方式完成这项繁忙的工作?