我正在编写一个带有SQL Server CE数据库的C#应用程序。
我有这个代码用于插入:
this.Validate();
this.documentacionBindingSource.EndEdit();
this.documentacionTableAdapter.Update(baseDatosDataSet.Documentacion);
但它不起作用。我试试这个并且它有效:
this.Validate();
this.documentacionBindingSource.EndEdit();
this.documentacionTableAdapter.Insert(....);
如果没有行的gridview第一个工作但是表单不起作用
为什么?