From 58ff8f45cfa3bf36feb3d4f3063e834a4f647d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B7=B3?= <454313500@qq.com> Date: Mon, 22 Apr 2024 15:54:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=8E=BB=E9=99=A4=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E7=9A=84=E7=BC=93=E5=AD=98=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Yi.Framework.Ddd.Application/YiCacheCrudAppService.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application/YiCacheCrudAppService.cs b/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application/YiCacheCrudAppService.cs index 36498c5d..d10cdd82 100644 --- a/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application/YiCacheCrudAppService.cs +++ b/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application/YiCacheCrudAppService.cs @@ -106,13 +106,6 @@ namespace Yi.Framework.Ddd.Application return output!; } - public override async Task CreateAsync(TCreateInput input) - { - var output = await base.CreateAsync(input); - await Cache.RemoveAsync(GetCacheKey(output.Id)); - return output; - } - public override async Task DeleteAsync(IEnumerable id) { await base.DeleteAsync(id);