C#:
public void Uptade(Product product)
{
ConnecitonControl();
SqlCommand command = new SqlCommand(
"Uptade Products Set Name=@name, UnitPrice=@unitPrice, StockAmount=@stockAmount where Id=@id", _connection);
command.Parameters.AddWithValue("@name", product.Name);
command.Parameters.AddWithValue("@unitPrice", product.UnitPrice);
command.Parameters.AddWithValue("@stockAmount", product.StockAmount);
command.Parameters.AddWithValue("@id", product.Id);
command.ExecuteNonQuery();
_connection.Close();
'Incorrect syntax near '='.' adlı hatayı veriyornasıl çözebilirim?

