根据该参考提供UInt32的SQL是不支持的。
UInt32
不支持SqlDbType从中推断UInt32。
SqlDbType
因此最好将参数传递为:
command.Parameters.Add("@param1", SqlDbType.Int).Value = Convert.ToInt32(paramValue);