0

我在 EF Code First 中定义了一个带有 AccountNumber 属性的客户实体。我可以毫无问题地使用他们的 AccountNumber 获取和更新单个客户。但是,当我获得所有客户时,AccountNumber 已经旧了一段时间,然后最终在更改后更新。数据库始终返回正确的 AccountNumber 值。

我分析了 SQLServer,发现获取所有客户的调用确实进入了数据库,它返回了最新的值,但是来自 DbContext 的响应给出了一个旧的 AccountNumber。所以看起来 EFCF 正在缓存我的数据。

请帮忙。

更新:代码示例 -

        public IQueryable<Customer> GetCustomers()
    {
        return this.acmeDbContext.Customer
            .Include(x => x.IpAddressRange)
            ;
    }

    public Customer GetCustomer(Guid id)
    {
        var Customer = this.acmeDbContext.Customer
            .Include(x => x.Contacts)
            .Include(x => x.IpAddressRange)
            .OrderByDescending(x => x.Id)
            .FirstOrDefault(x => x.CustomerId == id);
        return Customer;
    }
    public void SaveCustomer(Customer Customer)
    {
        this.acmeDbContext.SaveChanges();
    }
4

1 回答 1

0

我最终使用 Reload 方法重新加载每个客户:

        if (noCache)
            customers.ToList().ForEach(x => acmeDbContext.Entry(x).Reload());
于 2012-06-26T15:09:36.450 回答