If I add unnamed parameters to my SqlCommand, how do I set the parameter values, on the SqlCommand?
I have no problems when I use named parameters, where I can just do SqlCommand.Parameters.AddWithValue().
Example:
Select * from sometable where SomeValue=? and AnotherValue=?