Mapper BUG

This commit is contained in:
sunkaixuan 2019-05-21 11:46:47 +08:00
parent 6c360ffdc3
commit c09e620678

View File

@ -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];