Hi,
Just wondering if anyone has found any workaround to this...
We used to use the %SelectSQL function to execute data retrieval stored procedures however we'd always name the paramaters that we were passing in as we don't like to rely on implicit ordering and sometimes certain parameters can be optional. This means that we could have a sp call in the manner of "EXEC sp_get_user_list @city='London', @postcode='NW1 5ET'. This sp may have an optional @usere_;id paramer for finding the user by key which in this case we wouldn't be providing.
In V9 you set parameters to MBO's using the @ symbol which means that these explicitly listed parameters are now replaced automatically and the resulting SQL is wrong.
I'm going to try copying out the command to notepad and amending the SQLArg's that are created as I'm hoping these are just type aware replace functions. It's tedious and it may work but I'd love to hear how others are or would do this?
Thanks,
Paul.