Beispiel #1
0
 /// <inheritdoc />
 public abstract int Count(QueryProps queryProps, long batchId = -1);
Beispiel #2
0
 /// <inheritdoc />
 public async Task <int> CountAsync(QueryProps queryProps, long batchId = -1)
 {
     return(await Task.Run(() => { return Count(queryProps, batchId); }));
 }
Beispiel #3
0
 /// <inheritdoc />
 public abstract IEnumerable <T> Select(QueryProps queryProps, long batchId = -1);
Beispiel #4
0
 /// <inheritdoc />
 public async Task <IEnumerable <T> > SelectAsync(QueryProps queryProps, long batchId = -1)
 {
     return(await Task.Run(() => { return Select(queryProps, batchId); }));
 }