Skip to content

Commit

Permalink
#1044 Added the cache to the DbRepository.QueryMultiple
Browse files Browse the repository at this point in the history
  • Loading branch information
mikependon committed Aug 29, 2022
1 parent a5a025b commit 8589b1a
Show file tree
Hide file tree
Showing 2 changed files with 330 additions and 0 deletions.
10 changes: 10 additions & 0 deletions RepoDb.Core/RepoDb/Operations/DbConnection/QueryMultiple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ public static Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>> QueryMult
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -648,6 +649,7 @@ public static Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerab
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -1032,6 +1034,7 @@ public static Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerab
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -1481,6 +1484,7 @@ public static Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerab
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -1995,6 +1999,7 @@ public static Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerab
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -2743,6 +2748,7 @@ public static Task<Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>>> Que
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -3067,6 +3073,7 @@ public static Task<Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnu
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -3457,6 +3464,7 @@ public static Task<Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnu
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -3912,6 +3920,7 @@ public static Task<Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnu
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down Expand Up @@ -4432,6 +4441,7 @@ public static Task<Tuple<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnu
orderBy1: orderBy1,
top1: top1,
hints1: hints1,
cacheKey1: cacheKey1,
orderBy2: orderBy2,
top2: top2,
hints2: hints2,
Expand Down
Loading

0 comments on commit 8589b1a

Please sign in to comment.