procedure or function expects parameter which was not supplied
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
what kind of exception is this? how to rectify it?
-
what kind of exception is this? how to rectify it?
Looks like you are trying to access data using a procedure or table valued function and getting this error. If you check the stored procedure(SP) or table valued function(TVF) then you will find that they expect some parameters in order to run. You are calling TVF/executing SP without suppling those parameters. Supply them and it will be resolved.