I was just reading a question about how to add parameters to a SqlCommand in .NET, and it raised a question for me. In all of my programs, this is how I add parameters to m
This is how I am doing it in code:
cmd.Parameters.AddWithValue("@name", value);