File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,11 @@ If the Where method is not called in the expression, it will at an empty selecto
179
179
| execution_stats | IncludeExecutionStats() |
180
180
| conflicts | IncludeConflicts() |
181
181
182
+ ### Other IQueryable methods?
183
+
184
+ IQueryable methods that are not natively supported by CouchDB are evaluated in-memory using the IEnumerable counterpart, if possible.
185
+ ** WARN** Max and Min are not working now because the mapping from IQueryable to IEnumerable is not 1 to 1.
186
+
182
187
## Client operations
183
188
184
189
``` csharp
@@ -218,12 +223,6 @@ await rebels.Security.SetInfoAsync(securityInfo);
218
223
var securityInfo = await rebels .Security .GetInfoAsync ();
219
224
```
220
225
221
- ### Other IQueryable methods?
222
-
223
- IQueryable methods that are not natively supported by CouchDB are evaluated in-memory using the IEnumerable counterpart, if possible.
224
- ** WARN** Max and Min are not working now because the mapping from IQueryable to IEnumerable is not 1 to 1.
225
-
226
-
227
226
## Authentication
228
227
229
228
If authentication is needed currently there are two ways: Basic and Cookie authentication.
You can’t perform that action at this time.
0 commit comments