File tree Expand file tree Collapse file tree
Eocron.Algorithms/Queryable/Paging Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public void SanityCheck()
4040 string ct = null ;
4141 do
4242 {
43- var tmpQuery = queryable . Continue ( cfg , ct ) ;
43+ var tmpQuery = queryable . ApplyContinuationTokenFilter ( cfg , ct ) ;
4444 var tmp = tmpQuery . Take ( 1 ) . ToList ( ) . FirstOrDefault ( ) ;
4545 if ( tmp != null )
4646 {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public static class PagingQueryableExtensions
1818 /// <param name="continuationToken"></param>
1919 /// <typeparam name="TEntity"></typeparam>
2020 /// <returns></returns>
21- public static IQueryable < TEntity > Continue < TEntity > (
21+ public static IQueryable < TEntity > ApplyContinuationTokenFilter < TEntity > (
2222 this IQueryable < TEntity > source ,
2323 PagingConfiguration < TEntity > configuration ,
2424 string continuationToken ) where TEntity : class
You can’t perform that action at this time.
0 commit comments