Skip to content

Commit f528bfa

Browse files
author
electricessence
authored
Update README.md
1 parent 3e398a6 commit f528bfa

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-
Synchronously queries (pulls 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```.
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```.
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

@@ -70,7 +70,7 @@ var people = cmd.Results<Person>((Field:"FirstName",Column:"first_name"));
7070

7171
#### `Retrieve()` and `RetrieveAsync()`
7272

73-
Synchronously queries (pulls 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.
73+
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.
7474

7575
#### `AsSourceBlockAsync<T>()`
7676

0 commit comments

Comments
 (0)