I\'m using a SqlParameter to pass in null values to a table for various columns that are nullable. The problem is that SqlParameter looks like it defaults to nv
SqlParameter
Old post but might be helpful someone else.
Convert.DBNull
Like this
command.Parameters.AddWithValue("@param", Convert.DBNull);