Is there any benefit to explicitly using the StoredProcedure CommandType as opposed to just using a Text Command? In other words, is
cmd = new SqlCommand(\"
It's cleaner.
You're calling a stored procedure, why not just use the CommandType.StoredProcedure?
CommandType.StoredProcedure