我在C#中创建了一个Windows 窗体应用程序,在我为保存按钮编码的表单上从我的 MS Access 数据库“inspro”中创建了一个 C# 数据源:
try
{
this.Validate();
this.entitiesBindingSource.EndEdit();
this.entitiesTableAdapter.Update(this.iNSPRODataSet.Entities);
MessageBox.Show("Update successful");
}
catch (System.Exception ex)
{
MessageBox.Show("Update failed");
}
我收到显示“更新成功”的消息框,但是当我签入 Access 时,没有任何更新。我该如何解决这个问题?