當我試圖插入產品中使用的代碼我的DB到:無法隱式轉換類型雙爲int,顯式轉換存在(是否缺少強制轉換?)
private Product CreateProduct()
{
Product product = new Product();
product.Name = txtName.Text; // getting error here (1)
product.Price = Convert.ToDouble(txtPrice.Text); //Getting error here (2)
product.TypeId = Convert.ToInt32(ddlType.SelectedValue);
product.Description = txtDescription.Text;
product.Image = ddlImage.SelectedValue;
return product;
}
我無法修復這個錯誤。請讓我知道我哪裏錯了。
解決!
請包括更多細節。例如,您應該包含錯誤消息和導致錯誤發生的數據。 – ryanyuyu