From a987e8eda3b888c01402ffd78ef27068128f4d89 Mon Sep 17 00:00:00 2001 From: Argo-Tianyi Date: Thu, 27 Jan 2022 01:44:58 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E8=A7=92=E8=89=B2=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E5=A2=9E=E5=8A=A0=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Services/RoleService.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/RoleService.cs b/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/RoleService.cs index cd202412..ffd853bf 100644 --- a/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/RoleService.cs +++ b/src/blazor/admin/BootstrapAdmin.DataAccess.PetaPoco/Services/RoleService.cs @@ -17,10 +17,6 @@ class RoleService : IRole private const string RoleServiceGetRolesByGroupIdCacheKey = "RoleService-GetRolesByGroupId"; - private CancellationTokenSource? GetRolesByUserIdCancellationTokenSource { get; set; } - - private CancellationTokenSource? GetRolesByGroupIdCancellationTokenSource { get; set; } - private IDatabase Database { get; } /// @@ -64,6 +60,10 @@ class RoleService : IRole Database.AbortTransaction(); throw; } + if(ret) + { + CacheManager.Clear(); + } return ret; } @@ -117,6 +117,10 @@ class RoleService : IRole Database.AbortTransaction(); throw; } + if (ret) + { + CacheManager.Clear(); + } return ret; } }