I have this ADO.NET command object and I can set some parameters and execute it successfully. _mergecommand.Parameters.Add(new SqlParameter(\"values\", SqlDbType.Structured));
I want to validate a System.DateTime value before I add it as a parameter to 开发者_StackOverflowmy SqlCommand instance.
From what I can see, SubSonic 2.x stored procedure parameter data types can only be of type System.Data.DbType.
What value 开发者_运维百科in the SqlDbType enumeration should I use for the numeric T-SQL data type?Decimal.