6
使用AddWithValue時,我總是在參數名稱中包含at符號,但我只注意到其他人不使用它的某些代碼。一種方式比另一種更正確嗎?在使用SqlCommand.Parameters.AddWithValue時應該包含@嗎?
cmd.Parameters.AddWithValue("ixCustomer", ixCustomer);
或
cmd.Parameters.AddWithValue("@ixCustomer", ixCustomer);