How can I control on Procedure Optional Parameters Using DAL2
Add an Answer
Your question has been submitted and is awaiting moderation.
Thank you for reporting this content, moderators have been notified of your submission.
How can I control on Procedure Optional Parameters Using DAL2 ...
I have a procedure which has some nullable parameters ... I want to not send all nullable parameters except the last one .. so i handled that by sending the previous nullable parameters with null values ...Is there any way to specificy which parameters to be send in DAL 2
Like if i have procedure (prc1) have these parameters (par1,par2,par3,par4) and all these parameters are nullable parameters .. so how can i send the values for par1 & par4 only without sending par2 & par3 values ???????