0
我想知道爲什麼我不能使用LINQ將數據插入到數據庫中。我創建了Serviced-Base數據庫。在LINQ數據庫中插入數據
當我運行程序時,沒有錯誤,但數據庫表中仍然沒有數據顯示。
private void button1_Click(object sender, EventArgs e)
{
DataClasses1DataContext ds = new DataClasses1DataContext();
Customer cst = new Customer();
cst.CustName = textBoxNama.Text;
cst.Phone = int.Parse(textBoxHP.Text);
cst.CustAddress = textBoxAlamat.Text;
ds.Customers.InsertOnSubmit(cst);
try
{
ds.SubmitChanges();
MessageBox.Show("Success");
}
catch (Exception)
{
throw;
}
}
什麼是錯誤信息?這將有所幫助。 – Nazmul
沒有錯誤消息。程序運行成功,但我插入的數據無法出現 –
將所有內容放入try-catch中,讓我們看看有什麼例外。 –