this.TableManager.UpdateAll を使用して、データベースを更新しようとしています。追加された最初のクライアントは問題ありませんが、新しいクライアントを追加しようとすると、重複キー エラーが発生します。コードは次のとおりです。
//using a try command so if there is an exception, it will display it
try
{
//check if there are any changes prevents someone pressing save twice and you may get duplicate entries in database
if (this.allensCroftDataSet.HasChanges())
{
//It will then check if a row has been added:
if ((this.TableManager.UpdateAll(this.allensCroftDataSet) > 0))
{
//And it will then display a message box saying “saved”.
MessageBox.Show("Saved.");
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}