product
product_id
product_Name
product_Price
product_Description
product_image
category_id
another table category
category_id
category_name
我有文本框的新形式像
txtprodname
txtproddescrip
txtproductprice
picturebox1
txtcategoryname
我試圖添加新產品使用下面的代碼
我使用實體框架的productTable ..
public byte[] imageToByteArray(System.Drawing.Image image)
{
MemoryStream ms = new MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
return ms.ToArray();
}
private void btnSave_Click(object sender, EventArgs e)
{
Image image = pictureBox1.Image;
byte[] bit = null;
bit = imageToByteArray(image);
product pd = new product();
pd.product_Name = txtprodname.Text;
decimal price = Convert.ToDecimal(txtproductprice.Text);
pd.product_Price = price;
pd.product_Description = txtproddescrip.Text;
pd.product_Image = bit;
tsgentity.AddToproducts(pd);
tsgentity.SaveChanges();
this.Close();
}
我嘗試新的產品添加到產品表..但我沒有任何想法如何類別名稱添加到類別表.......使用LINQ
如何添加類別名稱類別表和更新類別名稱產品表,我已經進入...
怎麼辦與新產品一起進入這個名稱更新產品表中的類別ID添加到產品表
任何人都可以幫忙...
我使用的WinForms .....和C#語言
這是我的實體圖....
哦好吧..它是自動更新產品表類別ID ..... –
它的確如此。這與ORM中的關係有關。 –
我有類別描述文本框我也需要做類別描述也相同.. –