我创建了一个 Windows 窗体应用程序。我希望此应用程序能够使用 Linq to SQL 搜索记录,然后从数据网格视图中选择并删除该记录。
该表单包含一个用于输入参数的文本框、一个搜索按钮和一个删除按钮以及一个数据网格。
我的搜索部分工作正常并且填充了数据网格,但不知道如何实现单击数据网格中的记录并将其删除。
更新 - 我已经解决了解决方案。仅对 btn_Delete_Click 事件处理程序进行了更改,因此我在主代码之后包含了他的按钮的更新代码。
namespace DeleteForm
{
public partial class Form1 : Form
{
LinqtoStudentDataContext linqStud = new LinqtoStudentDataContext();
public Form1()
{
InitializeComponent();
}
private void btnDelete_Click(object sender, EventArgs e)
{
}
private void btnSearch_Click(object sender, EventArgs e)
{
var lastName = from stud in linqStud.Students
where txtFind.Text == stud.LastName
select stud;
dataGridView1.DataSource = lastName;
}
}
}
更新的代码 -
private void btnDelete_Click(object sender, EventArgs e)
{
if (this.dataGridView1.SelectedRows.Count > 0)
{
dataGridView1.Rows.RemoveAt(this.dataGridView1.SelectedRows[0].Index);
//linqStud.Students.DeleteAllOnSubmit();
linqStud.SubmitChanges();
}
}