Hello. My code keeps giving me an error:
Procedure or function 'User_GetById' expects parameter '@userid', which was not supplied.
Here is my Stored Procedure:
USE [myDB]GOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOalter PROCEDURE [dbo].[User_GetById] @userid intASBEGIN SELECT * FROM [User] WHERE ID = @UserIdEND