Skip to content

Commit acf53cd

Browse files
author
electricessence
committed
Fixed bug in extension.
Caused infinite recursion.
1 parent eb79fa2 commit acf53cd

2 files changed

Lines changed: 48 additions & 1 deletion

File tree

Documentation.xml

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QueryResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static IEnumerable<Dictionary<string, object>> DequeueAsMappedDictionarie
7878
/// <param name="source">The query result. Typically produced by a .Retrieve method.</param>
7979
/// <returns>An enumerable that dequeues the results and returns a column mapped dictionary for each entry</returns>
8080
public static async Task<IEnumerable<Dictionary<string, object>>> DequeueAsMappedDictionaries(this Task<QueryResult<Queue<object[]>>> source)
81-
=> await source.DequeueAsMappedDictionaries();
81+
=> (await source).DequeueAsMappedDictionaries();
8282

8383
/// <summary>
8484
/// Returns an enumerable that dequeues the results and attempts to map the fields to type T.

0 commit comments

Comments
 (0)