每当应用程序调用时,我都有一个一致的、可重复的 120 秒挂起
this.cacheProvider.Add(new CacheItem(cacheKey, data, this.regionName), cachePolicy);
在示例的 CachedDataSource.cs 的第60 行。. 该.Add
方法在 Microsoft 的 DLL 内部,我没有代码。这是我的参数:
cacheKey = "listofCompanies"
data = // this is an EF 4.0 database first model class with 70 entries... result from IQueryable
this.regionName = "companies"
重现错误:
我有一个数据库优先的 EF4.0 项目,我最近通过将“EntityFramework”引用和一个ContextGenerator 添加到我的 DAL 来升级到 4.1 。
如果我撤消这些更改,那么我的应用程序会立即发挥作用。
我的 DAL 和存储库存储在与我的 MVC 应用程序不同的 DLL 中。不确定这是否是问题的一部分。
关于我的仓库
/// Sample repository. Note that I return List<T> as IEnumerable,
/// and I use IDisposable
///
public class CompanyRepository : DisposableBase, ICompanyRepository
{
public IEnumerable<CompanyDetail> GetOneCompany(int? CompanyID)
{
var t = from c in _entities.CompanyDetail
where c.CompanyID == CompanyID.Value
select c;
return t.ToList();
}
}
/// <summary>
/// Disposable implementation based on advice from this link:
/// from Http://www.asp.net/entity-framework/tutorials/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application
/// </summary>
public class DisposableBase : IDisposable
{
protected TLSAdminEntities1 _entities;
public DisposableBase()
{
_entities = new TLSAdminEntities1();
disposed = false;
}
private bool disposed ;
protected virtual void Dispose(bool disposing)
{
if (!this.disposed)
{
if (disposing)
{
_entities.Dispose();
}
}
this.disposed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
问题
这是一个错误,还是我使用的是 EF4.1,或者缓存层不正确?