本文介绍了如何更新单值表单数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的代码:
My Code :
var chk = (from c in FMS.Depositers where c.RecepitNo == DepositNo select c).FirstOrDefault();
if(chk!=null)
{
chk.DepositStatus = "PreClosed"
gt.ApplyCurrentValues(chk.EntityKey.EntitySetName, chk);
gt.SaveChanges();
}
显示如下错误:
An在ObjectStateManager中找不到具有与提供的对象的键匹配的键的对象。验证提供的对象的键值是否与必须应用更改的对象的键值匹配。
showing error like this:
An object with a key that matches the key of the supplied object could not be found in the ObjectStateManager. Verify that the key values of the supplied object match the key values of the object to which changes must be applied.
推荐答案
var chk = (from c in FMS.Depositers where c.RecepitNo == DepositNo select c).FirstOrDefault();
if(chk!=null)
{
chk.DepositStatus = "PreClosed";
FMS.SaveChanges();
}
这篇关于如何更新单值表单数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!