.NET: Configurando o tamanho máximo para o parâmetro SQL

cmd.Parameters.Add("@blah",SqlDbType.VarChar,-1).Value = "some large text";
Zany Zebra