Skip to content

Commit ee043b2

Browse files
author
electricessence
authored
Update README.md
1 parent 4b85bdb commit ee043b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In order to keep connection open time to a minimum, some methods cache data befo
5353

5454
#### `Results<T>()` and `ResultsAsync<T>()`
5555

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```.
5757

5858
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).
5959

@@ -86,7 +86,7 @@ var people = cmd.Results<Person>(new Dictionary<string,string>{
8686

8787
#### `Retrieve()` and `RetrieveAsync()`
8888

89-
Pulls all the data first. Returns a `QueryResult<Queue<object[]>>` containing the requested data and column mappings. The `.AsDequeueingMappedEnumerable()` extension will iteratively convert the results to dictionaries for ease of access.
89+
Queues all the data. Returns a `QueryResult<Queue<object[]>>` containing the requested data and column mappings. The `.AsDequeueingMappedEnumerable()` extension will iteratively convert the results to dictionaries for ease of access.
9090

9191
#### `AsSourceBlockAsync<T>()`
9292

0 commit comments

Comments
 (0)