Procedure expects parameter which was not supplied

后端 未结 12 1490

I\'m getting the error when accessing a Stored Procedure in SQL Server

Server Error in \'/\' Application.
Procedure or function \'ColumnSeek\' expects parame         


        
12条回答
  •  心在旅途
    2020-12-02 18:20

    It is necessary to tell that a Stored Proc is being called:

    comm.CommandType = CommandType.StoredProcedure;
    

提交回复
热议问题