Created
August 28, 2014 15:55
-
-
Save deurell/e58729c0df945b73df74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static IReadOnlyCollection<TItem> GetAllItems<TItem>(this IViewStorageReader viewStorage, string keyForListOfKeys, Logger logger, string typeOfItems, uint batchSize = 200) | |
| where TItem : class | |
| { | |
| return GetAllItems<TItem, IEnumerable<string>>(viewStorage, keyForListOfKeys, logger, l => l.ToList(), typeOfItems, batchSize: batchSize); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found this today. This is what made me quit .net.