在LINQ数据库中插入数据



我想知道为什么我不能使用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;
    }
}

请检查您是否连接到正确的数据库(检查连接字符串)

相关内容

  • 没有找到相关文章

最新更新