目前用了 EF5 查询,每次好像都会从缓存读取数据,如果该 key 在实体存在,不管后台数据怎么修改,都会从缓存里面读取。
我想每次都从后台读取,怎么实现?
贴了目前的获取列表代码
public IQueryable<TEntity> GetList()
{
var ls=from a
in this.DALContext.Set<TEntity>()
select a;
return ls.ToList<TEntity>().AsQueryable<TEntity>();
}
更多 0