You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ In order to keep connection open time to a minimum, some methods cache data befo
53
53
54
54
#### `Results<T>()` and `ResultsAsync<T>()`
55
55
56
-
Pulls all the data first. Then using the provided type `T` entity, the data is coerced by which properties intersect with the ones available to the ```IDataReader```.
56
+
Queues all the data. Then using the provided type `T` entity, the data is coerced by which properties intersect with the ones available to the ```IDataReader```.
57
57
58
58
Optionally a field to column override map can be passed as a parameter. If a column is set as `null` then that field is ignored (not applied to the model).
59
59
@@ -86,7 +86,7 @@ var people = cmd.Results<Person>(new Dictionary<string,string>{
86
86
87
87
#### `Retrieve()` and `RetrieveAsync()`
88
88
89
-
Pullsallthedatafirst. Returnsa `QueryResult<Queue<object[]>>` containingtherequesteddataandcolumnmappings. The `.AsDequeueingMappedEnumerable()` extensionwilliterativelyconverttheresultstodictionariesforeaseofaccess.
89
+
Queuesallthedata. Returnsa `QueryResult<Queue<object[]>>` containingtherequesteddataandcolumnmappings. The `.AsDequeueingMappedEnumerable()` extensionwilliterativelyconverttheresultstodictionariesforeaseofaccess.
0 commit comments