Linq to Entity更新查询第二部分

时间:2010-08-31 13:02:03

标签: linq linq-to-entities

好的,让我的查询启动,启动并运行,但似乎没有让它正常运行!!

我的查询如下:

MyEnt updatefeedback = new MyEnt();

tblWeight newfeedback = (
    from weight in updatefeedback.tblWeights
    where weight.MemberId == memberid
    where weight.LocationId == locationid
    where weight.PriKey == prikeyint
    select weight).Single();

newfeedback.Feedback = feedbacktext;

updatefeedback.SaveChanges();

基本上,我要做的就是在反馈中插入无反馈文本(feedbacktext)。然而,尽管一切看起来都很好并且正在填充,但我不相信tblWeight实际上正在更新。

任何建议,非常感谢。

1 个答案:

答案 0 :(得分:0)

感谢分析师提示Morteza。

确实工作得非常好 - 我是个白痴,每次加载时都会重新填充radgrid的项目模板......傻傻的我。