修改BUG:修复字典表维护保存后不更新缓存问题

This commit is contained in:
Argo-Surface 2019-02-01 14:09:13 +08:00
parent 34e340d9ee
commit 9dd5d802b5
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ namespace Bootstrap.DataAccess
public static bool Save(BootstrapDict p)
{
var ret = DbContextManager.Create<Dict>().Save(p);
if (ret) CacheCleanUtility.ClearCache(new List<string>() { p.Id });
if (ret) CacheCleanUtility.ClearCache(dictIds: new List<string>());
return ret;
}