Ok, I found the answer myself. Although it works only on dataGridView and does not work on dataListView .
To delete a record and make changes to the database:
radGridView1.CurrentRow.Delete(); this.yourTableAdapter.Update(yourDataSet);
On the other hand, if you added new entries and want to change the list:
this.yourTableAdapter.Fill(yourDataSet.yourTabel);
If you know how to do the same with dataListView , I will be happy to hear.
source share