mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Mapper BUG
This commit is contained in:
@@ -22,7 +22,7 @@ namespace SqlSugar
|
||||
public Result Get<Result>(Func<List<T>, Result> action)
|
||||
{
|
||||
GetIndex++;
|
||||
string key = "Get" + GetIndex;
|
||||
string key = "Get" +typeof(Result)+action.GetHashCode()+action.Method.Name;
|
||||
if (caches.ContainsKey(key))
|
||||
{
|
||||
return (Result)caches[key];
|
||||
|
Reference in New Issue
Block a user