手动更新时 RadGrid Control 出现错误?

发布于 2024-11-28 05:02:52 字数 632 浏览 0 评论 0原文

代码1:

protected void RadGrid1_UpdateCommand(object sender, GridCommandEventArgs e)
        {
            GridEditableItem item = e.Item as GridEditableItem;
            var roll = item.GetDataKeyValue("rollno").ToString();
            //int t = Int32.Parse(roll);
            students stdd = DbContext.students.Where(p => p.rollno == roll).FirstOrDefault();
            item.UpdateValues(stdd);
            DbContext.SaveChanges();

        }

这是我在RadGrid中更新数据库的代码,我在“(p => p.rollno == roll)”处收到错误,即“Delegate System.Func不接受1个参数”。

我正在使用 EntityDataModel。在我的数据库表中,名称是学生,“rollno”是身份。

code 1:

protected void RadGrid1_UpdateCommand(object sender, GridCommandEventArgs e)
        {
            GridEditableItem item = e.Item as GridEditableItem;
            var roll = item.GetDataKeyValue("rollno").ToString();
            //int t = Int32.Parse(roll);
            students stdd = DbContext.students.Where(p => p.rollno == roll).FirstOrDefault();
            item.UpdateValues(stdd);
            DbContext.SaveChanges();

        }

This is my code in RadGrid to update the DB,i'm getting error at "(p => p.rollno == roll)",that is "Delegate System.Func Does not take 1 argument".

and i'm using EntityDataModel.In my DB table name is student and 'rollno' is identity.

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

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

发布评论

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

评论(1

雨夜星沙 2024-12-05 05:02:52

此处描述了类似的问题: linq-to-sql 委托不采用“1”参数。参见帖子
RiskSWDeveloper_WorkEmail

RiskSWDeveloper_WorkEmail帖子:

回复可能遇到原始问题的其他人,“委托'System.Func不接受'1'参数':

最近,在更改基础表中的字段名称并刷新实体模型后,我在 Linq to Entities 中遇到了此问题。我从 ObjectContext 中选择的 linq 查询仍然使用查询中的旧字段名(即 .Where(x => x.OldFieldname == "MyValue")。我收到上述错误 ('Delegate ',int,bool>;在我修复字段名称之前,不会采用“1”个参数。

Similar problem is described here: linq-to-sql delegate does not take "1" argument. See post by
RiskSWDeveloper_WorkEmail.

RiskSWDeveloper_WorkEmail post:

Replying for others who may encounter the original issue, "Delegate 'System.Func does not take '1' arguments':

I recently encountered this issue with Linq to Entities after I had changed a fieldname in my underlying table and refreshed my entity model. The linq query I had selecting from my ObjectContext still used the old fieldname in the query (i.e. .Where(x => x.OldFieldname == "MyValue"). I got the above error ('Delegate ',int,bool> does not take '1' arguments' until I fixed the fieldname.

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