/// <summary>Execute an action on each key/value pair of the range results</summary>
 public Task ForEachAsync([NotNull] Action <T> action)
 {
     return(FdbAsyncEnumerable.ForEachAsync(this, action, this.Transaction.Cancellation));
 }
Beispiel #2
0
 /// <summary>Execute an action on each key/value pair of the range results</summary>
 public Task ForEachAsync([NotNull] Action <T> action)
 {
     // ReSharper disable once InvokeAsExtensionMethod
     return(FdbAsyncEnumerable.ForEachAsync(this, action, this.Transaction.Cancellation));
 }