WCF DataService 数据检索问题

发布于 2024-09-25 09:03:29 字数 366 浏览 3 评论 0原文

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

示例:

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

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

如何解决这个问题,我缺少什么?

I'm using .net 4.0 (Visual Studio 2008). We are using WCF DataService, through this we are able to update the data. While calling UpdateObject(..) method its working fine and its been updated to database also( I manually checked the database). But while retrieving the data back, its not giving updated value??????

Example :

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

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

how to solve this, what i missing?

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

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

发布评论

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

评论(1

゛时过境迁 2024-10-02 09:03:29

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

Are you sure you are querying the same employee instance? If yes, the instance returned from the query and the instance passed to the UpdateObject method must be the same. Can you please make sure that's the case?

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