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
-
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```.
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
@@ -70,7 +70,7 @@ var people = cmd.Results<Person>((Field:"FirstName",Column:"first_name"));
70
70
71
71
#### `Retrieve()` and `RetrieveAsync()`
72
72
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.
0 commit comments