LinqToSql - 已添加具有相同键的项
本文关键字:添加 LinqToSql | 更新日期: 2023-09-27 18:33:47
我正在使用LinqToSql作为mvc Web应用程序。如果很多人几乎同时点击 Web 应用程序,我会看到一个An item with the same key has already been added.
错误。此错误的堆栈如下所示:
[ArgumentException: An item with the same key has already been added.]
System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) +12673712
System.Data.Linq.DataContext.GetTable(MetaTable metaTable) +286
System.Data.Linq.DataContext.GetTable() +100
CableSense.Domain.Repository.Concrete.RoleRepository.GetRolesForUser(String userName) in c:'BuildAgent'work'271278ff356daf1'CableSense.Domain'Repository'Concrete'RoleRepository.cs:84
这只发生在我的 RoleRrovider 类中,它是 .net RoleProvider 的自定义实现。在那里,我的 ctor 从 Ninject 获得一个存储库,如下所示:
public CustomRoleProvider()
{
_roleRepository = NinjectMVC3.Resolve<IRoleRepository>();
}
出错的方法:
public override string[] GetRolesForUser(string username)
{
return _roleRepository.GetRolesForUser(username);
}
在我的存储库中只不过是一个返回数据的 linq 查询 - 存储库在内部实例化上下文,没有任何内容是静态或共享的。
知道为什么会发生这种情况吗?
我不知道
Ninject 是否可以选择这样做,但每次调用 resolve 时,它都应该返回所需上下文的新内容。
这是由于 EF 上下文不是线程安全的。
例如,我使用Castle.Windsor作为我选择的IoC,它有一个生活方式选项,将其设置为瞬态而不是单例(这是默认值)会获得所需的行为。
private object _lockHandle=new object();
public override string[] GetRolesForUser(string username)
{
lock(_lockHandle){
return _roleRepository.GetRolesForUser(username);
}
}