问题描述
对 System.Data.Entity.DbSet 的查询没有反映最新的可能原因是什么? 基础数据的变化?我在 Asp.Net MVC 项目中有以下代码:
ShoppingEntities dbcontext = new ShoppingEntities();
var cartID = 200;
Cart check = dbcontext.Cart.Find(cartID);
//here check.quantity equals 9,and the back-end database table shows quantity = 9;
myServiceController.CallSP_UpdateCart(cartID); //back-end stored procedure sets quantity = 10
check = dbcontext.Cart.Find(cartID);
// here check.quantity still equals 9,but the back-end database table shows quantity = 10;
在代码注释中,当我说“后端数据库表显示数量 = xx”时,我指的是我使用 sql Server Management Studio 直接对数据库执行的 sql 查询。我必须使用存储过程来更新后端数据,因为那里有很多复杂的业务逻辑,使用 EF 不切实际。
在此先感谢您的帮助。
解决方法
Find
仅在上下文中找不到具有给定键的实体时才会往返数据库。
如果上下文正在跟踪具有给定主键值的实体(如您的情况),则它会立即返回而不向数据库发出请求。
如果实体不存在于上下文中,则会向数据库查询具有给定主键值的实体,并将该实体附加到上下文并返回(如果未找到实体,则返回空).
要获取刷新数据,最好在每次请求后处理 DbContext 实例。
您还可以重新加载实体并从数据库中获取更新的值。
Context.Entry<T>(entity).Reload()