Skip to content
Advertisement

passing parameters to a stored procedure in C#

How can i send three parameters a to stored procedure in sql?

Here is my error: Procedure or function GetIslemIdleri has too many arguments specified.

This is my stored procedure:

Here is my code:

Thanks for your helps.

Advertisement

Answer

The stored procedure is called GetIslemDetayIdleri but the code is using a stored procedure called GetIslemIdleri. Maybe the latter has fewer parameters than the former and you meant to call the former in the code?

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement