|
@@ -21,7 +21,7 @@ namespace WingServerCommon.Interfaces.Cache
|
|
|
/// </summary>
|
|
|
/// <typeparam name="string"></typeparam>
|
|
|
/// <returns></returns>
|
|
|
- private readonly IList<string> _dirtyCodes = new List<string>();
|
|
|
+ private readonly List<string> _dirtyCodes = new List<string>();
|
|
|
|
|
|
/// <summary>
|
|
|
/// Load cache from db objects
|
|
@@ -65,6 +65,7 @@ namespace WingServerCommon.Interfaces.Cache
|
|
|
{
|
|
|
var ids = args.DocumentIds;
|
|
|
CacheList.RemoveMany(ids);
|
|
|
+ _dirtyCodes.AddRange(ids);
|
|
|
}
|
|
|
|
|
|
/// <summary>
|