forked from BricksandMortar/FixMissingGivingGroupJob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntityFrameworkUtil.cs
32 lines (30 loc) · 1013 Bytes
/
EntityFrameworkUtil.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace com.bricksandmortarstudio.FixCombinedGivers
{
public static class EntityFrameworkUtil
{
public static IEnumerable<T> QueryInChunksOf<T>( this IQueryable<T> queryable, int chunkSize )
{
return queryable.QueryChunksOfSize( chunkSize ).SelectMany( chunk => chunk );
}
public static IEnumerable<T[]> QueryChunksOfSize<T>( this IQueryable<T> queryable, int chunkSize )
{
int chunkNumber = 0;
while ( true )
{
var query = ( chunkNumber == 0 )
? queryable
: queryable.Skip( chunkNumber * chunkSize );
var chunk = query.Take( chunkSize ).ToArray();
if ( chunk.Length == 0 )
yield break;
yield return chunk;
chunkNumber++;
}
}
}
}