SQL Server CE データベースを使用して C# アプリケーションを作成しています。
挿入用のこのコードがあります:
this.Validate();
this.documentacionBindingSource.EndEdit();
this.documentacionTableAdapter.Update(baseDatosDataSet.Documentacion);
しかし、うまくいきません。私はこれを試してみましたが、うまくいきます:
this.Validate();
this.documentacionBindingSource.EndEdit();
this.documentacionTableAdapter.Insert(....);
行のないグリッドビューの場合、最初のものは機能しますが、フォームは機能しません
なんで?