我的表单中包含DataGridView
和删除Button
我有这个代码删除一行,怎么能把这个删除保存到数据库?我用dataGridView1
填充了DataSet
。
if (dataGridView1.Rows.Count > 0)
{
if (dataGridView1.Rows[dataGridView1.CurrentRow.Index].IsNewRow != true)
{
dataGridView1.Rows.Remove(dataGridView1.CurrentRow);
}
}
答案 0 :(得分:1)
假设您的Table
中有一个名为id
的列,并且您希望根据id
从数据库中删除。试试这个:
private void btnDelete_Click(object sender, EventArgs e)
{
foreach (DataGridViewRow item in dataGridView1.SelectedRows)
{
var id = item.Cells[0].Value.ToString();//You can change id and Cells[0] as your need
//Write Delete code like this (Delete from Table where id = @id)
dataGridView1.Rows.RemoveAt(item.Index);//Remove from dataGridView1
}
}