开发者_StackOverflow中文版
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its cu
相关专题:
开发者_StackOverflow中文版
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
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.
精彩评论