开发者

SQL stored procedure parameters when calling from code [closed]

开发者 https://www.devze.com 2023-02-21 22:25 出处:网络
开发者_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.

0

精彩评论

暂无评论...
验证码 换一张
取 消