我想知道为什么我不能使用LINQ将数据插入数据库。我创建了Serviced-Base数据库。
当我运行程序时,没有错误,但数据库表中仍然没有数据。
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;
}
}
答案 0 :(得分:0)
请检查您是否连接到正确的数据库(检查连接字符串)。