SQL stored procedure parameters when calling from code [closed]
Does the order of parameters being passed to a stored procedure matter from the C# function?
Thank you
No, you can add the parameters in any order, as long as the names match.
If you use the ParametersCollection
it doesn't matter, because the parameters are specified by name.
No, it doesn’t matters the order of parameters passed to SP from C# as they can be identified by their name.
精彩评论