WCF DataService 数据检索问题
我正在使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定要查询同一个员工实例吗?如果是,则从查询返回的实例和传递给 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?