Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sql server中存储过程的包装器的定义是什么?
你没有给我们太多的东西,但我怀疑你在谈论存储过程的 C# 包装器。这只是允许您拥有一个从代码调用存储过程的方法。例如,如果您有一个名为的存储过程,DeleteUser 您可以像这样制作一个 .NET 包装器:
DeleteUser
private void DeleteUser(int UserId) { //Call your stored proc from here }