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: docs2/pages/getting-started/tutorial-query.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,9 +121,9 @@ var customer = ctx.Customers.Filter(CustomEnum.EnumValue).ToList();
121
121
122
122
## Query Future
123
123
124
-
Query Future allow to reduce database roundtrip by batching multiple queries in the same sql command.
124
+
Query Future allow to reduce database roundtrips by batching multiple queries in the same sql command.
125
125
126
-
All future query are stored in a pending list. When the first future query require a database roundtrip, all query are resolved in the same sql command instead of making a database roundtrip for every sql command.
126
+
All future queries are stored in a pending list. When the first future query require a database roundtrip, all queries are resolved in the same sql command instead of making a database roundtrip for every sql command.
127
127
128
128
### Support:
129
129
@@ -144,7 +144,7 @@ var countries = futureCountries.ToList();
144
144
145
145
{% include template-example.html %}
146
146
```csharp
147
-
// GET the first active customer and the number of avtive customers
147
+
// GET the first active customer and the number of active customers
0 commit comments