Hello,
Our collection of existing Oracle stored procedures utilize default parameter values. In some cases a user has not selected a value in the UI for something of an Int16 datatype. We would like to not pass a value to the procedure or pass a NULL value to the procedure. The generated stored procedure wrapper exposes this parameters as a Short and it will not accept a null value. Ideally I'd like the tool to generate the parameters as nullable types (i.e. - Short?) if there's a default parameter value specified in the procedure. Then we could pass a null to the actionprocedure.
Any ideas of a workaround?
Thanks,
Steve