I\'m writing a C# routine to call a stored proc. In the parameter list I\'m passing in, it is possible that one of the values can legally be null. So I thought I\'d use a
new SqlParameter("@theParam", (object)theParam ?? DBNull.Value)