0
我正在使用.net 4.0(Visual Studio 2008)。我們使用WCF DataService,通過這個我們可以更新數據。雖然調用UpdateObject(..)方法它的工作正常,它也被更新到數據庫(我手動檢查數據庫)。但是在檢索數據時,它沒有給出更新的值??????WCF DataService Data Retrieve問題
例子:
_context.UpdateObject(employee);
_context.SaveChanges();
retutn _context.Employees.Where(e => e.Code == empCode).singleOrDefault();
如何解決這個問題,我缺少什麼?