带有按钮字段删除和删除的 Gridview Linq 到 SQL DAL

发布于 2024-12-13 13:39:57 字数 606 浏览 2 评论 0原文

我正在尝试在 GridView 中实现一个简单的 Button 字段。

<asp:ButtonField ButtonType="Button" CommandName="Delete" Text="Delete" />

我有一个三层应用程序,我将在本示例中将其合并为一个函数:

protected void GV1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "Delete")
    {
        var deletion = (HRA_internalLesion) GV1.SelectedRow.DataItem;
        DataContext conn = new DataContext();

        conn.HRA_internalLesions.DeleteOnSubmit(deletion); 
        conn.SubmitChanges();
    }
}

我确信 vardeletion 行不会返回我想要的 Linq to SQL 对象。

I'm trying implement a simple Button field in the GridView.

<asp:ButtonField ButtonType="Button" CommandName="Delete" Text="Delete" />

I have a three-tier application that I'll combine into one function for this example:

protected void GV1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "Delete")
    {
        var deletion = (HRA_internalLesion) GV1.SelectedRow.DataItem;
        DataContext conn = new DataContext();

        conn.HRA_internalLesions.DeleteOnSubmit(deletion); 
        conn.SubmitChanges();
    }
}

I'm sure the var deletion line is not returning the Linq to SQL object I want.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

复古式 2024-12-20 13:39:57

最初呈现控件后,DataItem 属性不可用。如果您想执行此操作,则必须从页面上的字段重新创建数据对象。

编辑:

来自MSDN

DataItem 属性仅在 GridView 控件的 RowDataBound 事件期间和之后可用。

我不知道为什么它说“以及之后”——这对我来说是令人困惑的语言——但尽管如此,还是有记录在案的证据。

The DataItem property isn't available after the control has been rendered initially. You'll have to re-create the data object from your fields on the page if you want to do this.

Edit:

From MSDN:

The DataItem property is only available during and after the RowDataBound event of a GridView control.

I'm not sure why it says "and after" -- this is confusing language to me -- but nonetheless, there's documented evidence.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文