anjoy8 / Blog.Core

💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
http://apk.neters.club/.doc
Apache License 2.0
5.03k stars 1.38k forks source link

Bug with SqlSugarCacheService #373

Closed mrreddevil2412 closed 11 minutes ago

mrreddevil2412 commented 3 hours ago

When I change data, sqlsugar will also clear the cache and call the Caching.GetAllCacheKeys() function. When calling that function, an error occurs at the function CreateGetter<TParam, TReturn>(FieldInfo field) When I debug, field = null How should I correct it?

image

image

image

mrreddevil2412 commented 2 hours ago

After I checked again, there is now an error even when I get the cache list

LemonNoCry commented 24 minutes ago

Have you upgraded the version of Microsoft.Extensions.Caching.Memory?

The higher version may have destroyed the original structure, which needs to be optimized.

mrreddevil2412 commented 11 minutes ago

yes, i upgraded new version i fixed. Thanks you!