我有个问题。在我的课堂上,我将 product_ID 定义为 int32,将 product__price 定义为小数。当我必须使用文本框将数据保存在数据库中时,我不能这样做,它不能转换它或其他东西。如果可以,请你帮助我。谢谢你。
public Int32 Product_ID { get; set; }
public String Product_name { get; set; }
public String Product_category { get; set; }
public Decimal Product_price { get; set; }
public string image_location { get; set; }
Product product = new Product();
product.Product_ID = int.Parse(textBox1.Text);
product.Product_name = textBox2.Text;
product.Product_category = textBox3.Text;
product.Product_price = int.Parse(textBox4.Text);
product.image_location = textBox5.Text;
Product.Save(product);