我使用LinqToSql爲mvc Web應用程序。如果很多人在幾乎同一時間點擊網絡應用程序,我會看到An item with the same key has already been added.
錯誤。堆棧此錯誤的樣子:LinqToSql - 具有相同密鑰的項目已被添加
[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的自定義實現情況。在那裏,我的構造函數從Ninject得到一個存儲庫這樣的:
public CustomRoleProvider()
{
_roleRepository = NinjectMVC3.Resolve<IRoleRepository>();
}
的方法是錯誤的:
public override string[] GetRolesForUser(string username)
{
return _roleRepository.GetRolesForUser(username);
}
在我的回購不過是一個LINQ查詢返回的數據 - 回購實例化內部環境,沒有什麼是靜態的或共享的。
任何想法,爲什麼會發生這種情況?
+1上下文應該表示一個工作單元,所以它在線程之間共享沒有任何意義 – AHM