WCF DataService数据检索问题

时间:2010-09-28 11:33:52

标签: c# wcf wcf-data-services ado.net-entity-data-model

我正在使用.net 4.0(Visual Studio 2008)。我们正在使用WCF DataService,通过这个我们可以更新数据。虽然调用UpdateObject(..)方法工作正常,并且它也已更新到数据库(我手动检查了数据库)。但是在检索数据时,它没有给出更新的值??????

示例:

   _context.UpdateObject(employee);
   _context.SaveChanges();    

    retutn  _context.Employees.Where(e => e.Code == empCode).singleOrDefault();

如何解决这个问题,我错过了什么?

1 个答案:

答案 0 :(得分:0)

您确定要查询同一个员工实例吗?如果是,则从查询返回的实例和传递给UpdateObject方法的实例必须相同。你能确定是这样的吗?